AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
2.获取用户资料 ~~~ protected function getuser($openid) { $token = $this->gettoken(); $url = 'https://api.weixin.qq.com/cgi-bin/user/info?access_token=' . $token . '&openid=' . $openid . '&lang=zh_CN'; $obj = $this->curl_get($url); return $obj; } ~~~ 2.获取用户列表 ~~~ protected function userlist() { $token = $this->gettoken(); $url = 'https://api.weixin.qq.com/cgi-bin/user/get?access_token=' . $token; $obj = $this->curl_get($url); return $obj; } ~~~