1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- /**
- * Created by PhpStorm.
- * User: admin
- * Date: 2019/10/6
- * Time: 16:06
- */
- namespace wx\offiaccount;
- use wx\Base;
- class User extends Base
- {
- /**
- * 获取用户信息(公众号消息交互中可获取用户信息)
- */
- public function getUserInfo($accessToken, $openid)
- {
- $url = 'https://api.weixin.qq.com/cgi-bin/user/info?access_token=' . $accessToken . '&openid=' . $openid . '&lang=zh_CN';
- $data = $this->curl($url);
- return $data;
- }
- /**
- * 获取用户信息(公众号H5授权获取)
- */
- public function getH5UserInfo($accessToken, $openid)
- {
- $url = 'https://api.weixin.qq.com/sns/userinfo?access_token=' . $accessToken . '&openid=' . $openid . '&lang=zh_CN';
- $data = $this->curl($url);
- return json_decode($data, true);
- }
-
- }
|