GET
GET = 'get'
Class Group.
$http : \EasyWeChat\Core\Http
Http instance.
$accessToken : \EasyWeChat\Core\AccessToken
The request token.
__construct(\EasyWeChat\Core\AccessToken $accessToken)
Constructor.
\EasyWeChat\Core\AccessToken | $accessToken |
getHttp() : \EasyWeChat\Core\Http
Return the http instance.
setHttp(\EasyWeChat\Core\Http $http) : $this
Set the http instance.
\EasyWeChat\Core\Http | $http |
getAccessToken() : \EasyWeChat\Core\AccessToken
Return the current accessToken.
setAccessToken(\EasyWeChat\Core\AccessToken $accessToken) : $this
Set the request token.
\EasyWeChat\Core\AccessToken | $accessToken |
parseJSON(string $method, array $args) : \EasyWeChat\Support\Collection
Parse JSON from response and check error.
string | $method | |
array | $args |
create(string $name) : \EasyWeChat\Support\Collection
Create group.
string | $name |
lists() : \EasyWeChat\Support\Collection
List all groups.
update(integer $groupId, string $name) : \EasyWeChat\Support\Collection
Update a group name.
integer | $groupId | |
string | $name |
delete(integer $groupId) : \EasyWeChat\Support\Collection
Delete group.
integer | $groupId |
userGroup(string $openId) : \EasyWeChat\Support\Collection
Get user group.
string | $openId |
moveUser(string $openId, integer $groupId) : \EasyWeChat\Support\Collection
Move user to a group.
string | $openId | |
integer | $groupId |
moveUsers(array $openIds, integer $groupId) : \EasyWeChat\Support\Collection
Batch move users to a group.
array | $openIds | |
integer | $groupId |