callmez\wechat\sdk\Wechat::getGroupList PHP Method

getGroupList() public method

获取分组列表
public getGroupList ( ) : array | boolean
return array | boolean
    public function getGroupList()
    {
        $result = $this->httpRaw(self::WECHAT_GROUP_GET_URL . 'access_token=' . $this->getAccessToken());
        return isset($result['groups']) ? $result['groups'] : false;
    }
Wechat