diff --git a/WeChat/User.php b/WeChat/User.php index 742cd6f..c362ccd 100644 --- a/WeChat/User.php +++ b/WeChat/User.php @@ -87,6 +87,21 @@ class User extends BasicWeChat return $this->httpGetForJson($url); } + /** + * 获取标签下粉丝列表 + * @param integer $tagid 标签ID + * @param string $next_openid 第一个拉取的OPENID + * @return array + * @throws Exceptions\InvalidResponseException + * @throws Exceptions\LocalCacheException + */ + public function getUserListByTag($tagid, $next_openid = '') + { + $url = 'https://api.weixin.qq.com/cgi-bin/user/tag/get?access_token=ACCESS_TOKEN'; + $this->registerApi($url, __FUNCTION__, func_get_args()); + return $this->httpPostForJson($url, ['tagid' => $tagid, 'next_openid' => $next_openid]); + } + /** * 获取公众号的黑名单列表 * @param string $begin_openid