当前位置:Gxlcms > PHP教程 > 基于EaglePHP框架v2.7开发的微信5.0最新最全的API接口

基于EaglePHP框架v2.7开发的微信5.0最新最全的API接口

时间:2021-07-01 10:21:17 帮助过:24人阅读

代码出处:http://www.eaglephp.com
适用平台:window/Linux
依赖项目:EaglePHP框架

包含微信5.0 API基础接口、自定义菜单、高级接口,具体如下:
1、接收用户消息。
2、向用户回复消息。
3、接受事件推送。
4、会话界面自定义菜单。
5、语音识别。
6、客服接口。
7、OAuth2.0网页授权。
8、生成带参数二维码。
9、获取用户地理位置。
10、获取用户基本信息。
11、获取关注者列表。
12、用户分组。
  1. /**
  2. * 微信公众平台API
  3. *
  4. * @author maojianlw@139.com
  5. * [url=home.php?mod=space&uid=17823]@LINK[/url] http://www.eaglephp.com
  6. */
  7. class WeixinChat
  8. {
  9. private $token;
  10. private $appid;
  11. private $appsecret;
  12. private $access_token;
  13. // 接收的数据
  14. private $_receive = array();
  15. private $_reply = '';
  16. // 接口错误码
  17. private $errCode = '';
  18. // 接口错误信息
  19. private $errMsg = '';
  20. // 微信oauth登陆获取code
  21. const CONNECT_OAUTH_AUTHORIZE_URL = 'https://open.weixin.qq.com/connect/oauth2/authorize?';
  22. // 微信oauth登陆通过code换取网页授权access_token
  23. const SNS_OAUTH_ACCESS_TOKEN_URL = 'https://api.weixin.qq.com/sns/oauth2/access_token?';
  24. // 微信oauth登陆刷新access_token(如果需要)
  25. const SNS_OAUTH_REFRESH_TOKEN_URL = 'https://api.weixin.qq.com/sns/oauth2/refresh_token?';
  26. // 通过ticket换取二维码
  27. const SHOW_QRCODE_URL = 'https://mp.weixin.qq.com/cgi-bin/showqrcode?';
  28. // 微信oauth登陆拉取用户信息(需scope为 snsapi_userinfo)
  29. const SNS_USERINFO_URL = 'https://api.weixin.qq.com/sns/userinfo?';
  30. // 请求api前缀
  31. const API_URL_PREFIX = 'https://api.weixin.qq.com/cgi-bin';
  32. // 自定义菜单创建
  33. const MENU_CREATE_URL = '/menu/create?';
  34. // 自定义菜单查询
  35. const MENU_GET_URL = '/menu/get?';
  36. // 自定义菜单删除
  37. const MENU_DELETE_URL = '/menu/delete?';
  38. // 获取 access_token
  39. const AUTH_URL = '/token?grant_type=client_credential&';
  40. // 获取用户基本信息
  41. const USER_INFO_URL = '/user/info?';
  42. // 获取关注者列表
  43. const USER_GET_URL = '/user/get?';
  44. // 查询分组
  45. const GROUPS_GET_URL = '/groups/get?';
  46. // 创建分组
  47. const GROUPS_CREATE_URL = '/groups/create?';
  48. // 修改分组名
  49. const GROUPS_UPDATE_URL = '/groups/update?';
  50. // 移动用户分组
  51. const GROUPS_MEMBERS_UPDATE_URL = '/groups/members/update?';
  52. // 发送客服消息
  53. const MESSAGE_CUSTOM_SEND_URL = '/message/custom/send?';
  54. // 创建二维码ticket
  55. const QRCODE_CREATE_URL = '/qrcode/create?';
  56. /**
  57. * 初始化配置数据
  58. * @param array $options
  59. */
  60. public function __construct($options)
  61. {
  62. $this->token = isset($options['token']) ? $options['token'] : '';
  63. $this->appid = isset($options['appid']) ? $options['appid'] : '';
  64. $this->appsecret = isset($options['appsecret']) ? $options['appsecret'] : '';
  65. }
  66. /**
  67. * 获取发来的消息
  68. * 当普通微信用户向公众账号发消息时,微信服务器将POST消息的XML数据包到开发者填写的URL上。
  69. */
  70. public function getRev()
  71. {
  72. $postStr = file_get_contents('php://input');
  73. if($postStr)
  74. {
  75. $this->_receive = (array)simplexml_load_string($postStr, 'SimpleXMLElement', LIBXML_NOCDATA);
  76. //Log::info(var_export($this->_receive, true));
  77. }
  78. return $this;
  79. }
  80. /**
  81. * 获取微信服务器发来的消息
  82. */
  83. public function getRevData()
  84. {
  85. return $this->_receive;
  86. }
  87. /**
  88. * 获取接收者
  89. */
  90. public function getRevTo()
  91. {
  92. return isset($this->_receive['ToUserName']) ? $this->_receive['ToUserName'] : false;
  93. }
  94. /**
  95. * 获取消息发送者(一个OpenID)
  96. */
  97. public function getRevFrom()
  98. {
  99. return isset($this->_receive['FromUserName']) ? $this->_receive['FromUserName'] : false;
  100. }
  101. /**
  102. * 获取接收消息创建时间 (整型)
  103. */
  104. public function getRevCTime()
  105. {
  106. return isset($this->_receive['CreateTime']) ? $this->_receive['CreateTime'] : false;
  107. }
  108. /**
  109. * 获取接收消息类型(text、image、voice、video、location、link、event)
  110. */
  111. public function getRevType()
  112. {
  113. return isset($this->_receive['MsgType']) ? $this->_receive['MsgType'] : false;
  114. }
  115. /**
  116. * 获取接收消息编号
  117. */
  118. public function getRevId()
  119. {
  120. return isset($this->_receive['MsgId']) ? $this->_receive['MsgId'] : false;
  121. }
  122. /**
  123. * 获取接收消息文本
  124. * 通过语音识别接口,用户发送的语音,将会同时给出语音识别出的文本内容。(需申请服务号的高级接口权限)
  125. */
  126. public function getRevText()
  127. {
  128. if(isset($this->_receive['Content'])) return trim($this->_receive['Content']);
  129. elseif(isset($this->_receive['Recognition'])) return trim($this->_receive['Recognition']);
  130. else return false;
  131. }
  132. /**
  133. * 获取接收图片消息
  134. */
  135. public function getRevImage()
  136. {
  137. if(isset($this->_receive['PicUrl'])){
  138. return array(
  139. 'picUrl' => $this->_receive['PicUrl'], //图片链接
  140. 'mediaId' => $this->_receive['MediaId'] //图片消息媒体id,可以调用多媒体文件下载接口拉取数据。
  141. );
  142. }
  143. return false;
  144. }
  145. /**
  146. * 获取接收语音消息
  147. */
  148. public function getRevVoice()
  149. {
  150. if(isset($this->_receive['MediaId'])){
  151. return array(
  152. 'mediaId' => $this->_receive['MediaId'], //语音消息媒体id,可以调用多媒体文件下载接口拉取数据。
  153. 'format' => $this->_receive['Format'] //语音格式,如amr,speex等
  154. );
  155. }
  156. return false;
  157. }
  158. /**
  159. * 获取接收视频消息
  160. */
  161. public function getRevVideo()
  162. {
  163. if(isset($this->_receive['MediaId'])){
  164. return array(
  165. 'mediaId' => $this->_receive['MediaId'], //视频消息媒体id,可以调用多媒体文件下载接口拉取数据。
  166. 'thumbMediaId' => $this->_receive['ThumbMediaId'] //视频消息缩略图的媒体id,可以调用多媒体文件下载接口拉取数据。
  167. );
  168. }
  169. return false;
  170. }
  171. /**
  172. * 获取用户地理位置
  173. */
  174. public function getRevLocation()
  175. {
  176. if(isset($this->_receive['Location_X'])){
  177. return array(
  178. 'locationX' => $this->_receive['Location_X'], //地理位置维度
  179. 'locationY' => $this->_receive['Location_Y'], //地理位置经度
  180. 'scale' => $this->_receive['Scale'], //地图缩放大小
  181. 'label' => $this->_receive['Label'] //地理位置信息
  182. );
  183. }
  184. //开通了上报地理位置接口的公众号,用户在关注后进入公众号会话时,会弹框让用户确认是否允许公众号使用其地理位置。
  185. //弹框只在关注后出现一次,用户以后可以在公众号详情页面进行操作。
  186. elseif(isset($this->_receive['Latitude']))
  187. {
  188. return array(
  189. 'latitude' => $this->_receive['Latitude'], //地理位置纬度
  190. 'longitude' => $this->_receive['Longitude'], //地理位置经度
  191. 'precision' => $this->_receive['Precision'] // 地理位置精度
  192. );
  193. }
  194. return false;
  195. }
  196. /**
  197. * 获取接收链接消息
  198. */
  199. public function getRevLink()
  200. {
  201. if(isset($this->_receive['Title'])){
  202. return array(
  203. 'title' => $this->_receive['Title'], //消息标题
  204. 'description' => $this->_receive['Description'], //消息描述
  205. 'url' => $this->_receive['Url'] //消息链接
  206. );
  207. }
  208. return false;
  209. }
  210. /**
  211. * 获取接收事件类型
  212. * 事件类型如:subscribe(订阅)、unsubscribe(取消订阅)、click
  213. */
  214. public function getRevEvent()
  215. {
  216. if(isset($this->_receive['Event']))
  217. {
  218. return array(
  219. 'event' => strtolower($this->_receive['Event']),
  220. 'key'=> isset($this->_receive['EventKey']) ? $this->_receive['EventKey'] : ''
  221. );
  222. }
  223. return false;
  224. }
  225. /**
  226. * 设置回复文本消息
  227. * @param string $content
  228. * @param string $openid
  229. */
  230. public function text($content='')
  231. {
  232. $textTpl = "
  233. %s
  234. ";
  235. $this->_reply = sprintf($textTpl,
  236. $this->getRevFrom(),
  237. $this->getRevTo(),
  238. Date::getTimeStamp(),
  239. 'text',
  240. $content
  241. );
  242. return $this;
  243. }
  244. /**
  245. * 设置回复音乐信息
  246. * @param string $title
  247. * @param string $desc
  248. * @param string $musicurl
  249. * @param string $hgmusicurl
  250. */
  251. public function music($title, $desc, $musicurl, $hgmusicurl='')
  252. {
  253. $textTpl = '
  254. %s
  255. <![CDATA[%s]]>
  256. ';
  257. //
  258. $this->_reply = sprintf($textTpl,
  259. $this->getRevFrom(),
  260. $this->getRevTo(),
  261. Date::getTimeStamp(),
  262. 'music',
  263. $title,
  264. $desc,
  265. $musicurl,
  266. $hgmusicurl
  267. );
  268. return $this;
  269. }
  270. /**
  271. * 回复图文消息
  272. * @param array
  273. */
  274. public function news($data)
  275. {
  276. $count = count($data);
  277. $subText = '';
  278. if($count > 0)
  279. {
  280. foreach($data as $v)
  281. {
  282. $tmpText = '
  283. <![CDATA[%s]]>
  284. ';
  285. $subText .= sprintf(
  286. $tmpText, $v['title'],
  287. isset($v['description']) ? $v['description'] : '',
  288. isset($v['picUrl']) ? $v['picUrl'] : '',
  289. isset($v['url']) ? $v['url'] : ''
  290. );
  291. }
  292. }
  293. $textTpl = '
  294. %s
  295. ';
  296. $this->_reply = sprintf(
  297. $textTpl,
  298. $this->getRevFrom(),
  299. $this->getRevTo(),
  300. Date::getTimeStamp(),
  301. $count,
  302. $subText
  303. );
  304. return $this;
  305. }
  306. /**
  307. * 回复消息
  308. * @param array $msg
  309. * @param bool $return
  310. */
  311. public function reply()
  312. {
  313. header('Content-Type:text/xml');
  314. echo $this->_reply;
  315. exit;
  316. }
  317. /**
  318. * 自定义菜单创建
  319. * @param array 菜单数据
  320. */
  321. public function createMenu($data)
  322. {
  323. if(!$this->access_token && !$this->checkAuth()) return false;
  324. $result = curlRequest(self::API_URL_PREFIX.self::MENU_CREATE_URL.'access_token='.$this->access_token, $this->jsonEncode($data), 'post');
  325. if($result)
  326. {
  327. $jsonArr = json_decode($result, true);
  328. if(!$jsonArr || (isset($jsonArr['errcode']) && $jsonArr['errcode'] > 0)) $this->error($jsonArr);
  329. else return true;
  330. }
  331. return false;
  332. }
  333. /**
  334. * 自定义菜单查询
  335. */
  336. public function getMenu()
  337. {
  338. if(!$this->access_token && !$this->checkAuth()) return false;
  339. $result = curlRequest(self::API_URL_PREFIX.self::MENU_GET_URL.'access_token='.$this->access_token);
  340. if($result)
  341. {
  342. $jsonArr = json_decode($result, true);
  343. if(!$jsonArr || (isset($jsonArr['errcode']) && $jsonArr['errcode'] > 0)) $this->error($jsonArr);
  344. else return $jsonArr;
  345. }
  346. return false;
  347. }
  348. /**
  349. * 自定义菜单删除
  350. */
  351. public function deleteMenu()
  352. {
  353. if(!$this->access_token && !$this->checkAuth()) return false;
  354. $result = curlRequest(self::API_URL_PREFIX.self::MENU_DELETE_URL.'access_token='.$this->access_token);
  355. if($result)
  356. {
  357. $jsonArr = json_decode($result, true);
  358. if(!$jsonArr || (isset($jsonArr['errcode']) && $jsonArr['errcode'] > 0)) $this->error($jsonArr);
  359. else return true;
  360. }
  361. return false;
  362. }
  363. /**
  364. * 获取用户基本信息
  365. * @param string $openid 普通用户的标识,对当前公众号唯一
  366. */
  367. public function getUserInfo($openid)
  368. {
  369. if(!$this->access_token && !$this->checkAuth()) return false;
  370. $result = curlRequest(self::API_URL_PREFIX.self::USER_INFO_URL.'access_token='.$this->access_token.'&openid='.$openid);
  371. if($result)
  372. {
  373. $jsonArr = json_decode($result, true);
  374. if(!$jsonArr || (isset($jsonArr['errcode']) && $jsonArr['errcode'] > 0)) $this->error($jsonArr);
  375. else return $jsonArr;
  376. }
  377. return false;
  378. }
  379. /**
  380. * 获取关注者列表
  381. * @param string $next_openid 第一个拉取的OPENID,不填默认从头开始拉取
  382. */
  383. public function getUserList($next_openid='')
  384. {
  385. if(!$this->access_token && !$this->checkAuth()) return false;
  386. $result = curlRequest(self::API_URL_PREFIX.self::USER_GET_URL.'access_token='.$this->access_token.'&next_openid='.$next_openid);
  387. if($result)
  388. {
  389. $jsonArr = json_decode($result, true);
  390. if(!$jsonArr || (isset($jsonArr['errcode']) && $jsonArr['errcode'] > 0)) $this->error($jsonArr);
  391. else return $jsonArr;
  392. }
  393. return false;
  394. }
  395. /**
  396. * 查询分组
  397. */
  398. public function getGroup()
  399. {
  400. if(!$this->access_token && !$this->checkAuth()) return false;
  401. $result = curlRequest(self::API_URL_PREFIX.self::GROUPS_GET_URL.'access_token='.$this->access_token);
  402. if($result)
  403. {
  404. $jsonArr = json_decode($result, true);
  405. if(!$jsonArr || (isset($jsonArr['errcode']) && $jsonArr['errcode'] > 0)) $this->error($jsonArr);
  406. else return $jsonArr;
  407. }
  408. return false;
  409. }
  410. /**
  411. * 创建分组
  412. * @param string $name 分组名字(30个字符以内)
  413. */
  414. public function createGroup($name)
  415. {
  416. if(!$this->access_token && !$this->checkAuth()) return false;
  417. $data = array('group' => array('name' => $name));
  418. $result = curlRequest(self::API_URL_PREFIX.self::GROUPS_CREATE_URL.'access_token='.$this->access_token, $this->jsonEncode($data), 'post');
  419. if($result)
  420. {
  421. $jsonArr = json_decode($result, true);
  422. if(!$jsonArr || (isset($jsonArr['errcode']) && $jsonArr['errcode'] > 0)) $this->error($jsonArr);
  423. else return true;
  424. }
  425. return false;
  426. }
  427. /**
  428. * 修改分组名
  429. * @param int $id 分组id,由微信分配
  430. * @param string $name 分组名字(30个字符以内)
  431. */
  432. public function updateGroup($id, $name)
  433. {
  434. if(!$this->access_token && !$this->checkAuth()) return false;
  435. $data = array('group' => array('id' => $id, 'name' => $name));
  436. $result = curlRequest(self::API_URL_PREFIX.self::GROUPS_UPDATE_URL.'access_token='.$this->access_token, $this->jsonEncode($data), 'post');
  437. if($result)
  438. {
  439. $jsonArr = json_decode($result, true);
  440. if(!$jsonArr || (isset($jsonArr['errcode']) && $jsonArr['errcode'] > 0)) $this->error($jsonArr);
  441. else return true;
  442. }
  443. return false;
  444. }
  445. /**
  446. * 移动用户分组
  447. *
  448. * @param string $openid 用户唯一标识符
  449. * @param int $to_groupid 分组id
  450. */
  451. public function updateGroupMembers($openid, $to_groupid)
  452. {
  453. if(!$this->access_token && !$this->checkAuth()) return false;
  454. $data = array('openid' => $openid, 'to_groupid' => $to_groupid);
  455. $result = curlRequest(self::API_URL_PREFIX.self::GROUPS_MEMBERS_UPDATE_URL.'access_token='.$this->access_token, $this->jsonEncode($data), 'post');
  456. if($result)
  457. {
  458. $jsonArr = json_decode($result, true);
  459. if(!$jsonArr || (isset($jsonArr['errcode']) && $jsonArr['errcode'] > 0)) $this->error($jsonArr);
  460. else return true;
  461. }
  462. return false;
  463. }
  464. /**
  465. * 发送客服消息
  466. * 当用户主动发消息给公众号的时候(包括发送信息、点击自定义菜单clike事件、订阅事件、扫描二维码事件、支付成功事件、用户维权),
  467. * 微信将会把消息数据推送给开发者,开发者在一段时间内(目前为24小时)可以调用客服消息接口,通过POST一个JSON数据包来发送消息给普通用户,在24小时内不限制发送次数。
  468. * 此接口主要用于客服等有人工消息处理环节的功能,方便开发者为用户提供更加优质的服务。
  469. *
  470. * @param string $touser 普通用户openid
  471. */
  472. public function sendCustomMessage($touser, $data, $msgType = 'text')
  473. {
  474. $arr = array();
  475. $arr['touser'] = $touser;
  476. $arr['msgtype'] = $msgType;
  477. switch ($msgType)
  478. {
  479. case 'text': // 发送文本消息
  480. $arr['text']['content'] = $data;
  481. break;
  482. case 'image': // 发送图片消息
  483. $arr['image']['media_id'] = $data;
  484. break;
  485. case 'voice': // 发送语音消息
  486. $arr['voice']['media_id'] = $data;
  487. break;
  488. case 'video': // 发送视频消息
  489. $arr['video']['media_id'] = $data['media_id']; // 发送的视频的媒体ID
  490. $arr['video']['thumb_media_id'] = $data['thumb_media_id']; // 视频缩略图的媒体ID
  491. break;
  492. case 'music': // 发送音乐消息
  493. $arr['music']['title'] = $data['title'];// 音乐标题
  494. $arr['music']['description'] = $data['description'];// 音乐描述
  495. $arr['music']['musicurl'] = $data['musicurl'];// 音乐链接
  496. $arr['music']['hqmusicurl'] = $data['hqmusicurl'];// 高品质音乐链接,wifi环境优先使用该链接播放音乐
  497. $arr['music']['thumb_media_id'] = $data['title'];// 缩略图的媒体ID
  498. break;
  499. case 'news': // 发送图文消息
  500. $arr['news']['articles'] = $data; // title、description、url、picurl
  501. break;
  502. }
  503. if(!$this->access_token && !$this->checkAuth()) return false;
  504. $result = curlRequest(self::API_URL_PREFIX.self::MESSAGE_CUSTOM_SEND_URL.'access_token='.$this->access_token, $this->jsonEncode($arr), 'post');
  505. if($result)
  506. {
  507. $jsonArr = json_decode($result, true);
  508. if(!$jsonArr || (isset($jsonArr['errcode']) && $jsonArr['errcode'] > 0)) $this->error($jsonArr);
  509. else return true;
  510. }
  511. return false;
  512. }
  513. /**
  514. * 获取access_token
  515. */
  516. public function checkAuth()
  517. {
  518. // 从缓存中获取access_token
  519. $cache_flag = 'weixin_access_token';
  520. $access_token = cache($cache_flag);
  521. if($access_token)
  522. {
  523. $this->access_token = $access_token;
  524. return true;
  525. }
  526. // 请求微信服务器获取access_token
  527. $result = curlRequest(self::API_URL_PREFIX.self::AUTH_URL.'appid='.$this->appid.'&secret='.$this->appsecret);
  528. if($result)
  529. {
  530. $jsonArr = json_decode($result, true);
  531. if(!$jsonArr || (isset($jsonArr['errcode']) && $jsonArr['errcode'] > 0))
  532. {
  533. $this->error($jsonArr);
  534. }
  535. else
  536. {
  537. $this->access_token = $jsonArr['access_token'];
  538. $expire = isset($jsonArr['expires_in']) ? intval($jsonArr['expires_in'])-100 : 3600;
  539. // 将access_token保存到缓存中
  540. cache($cache_flag, $this->access_token, $expire, Cache::FILE);
  541. return true;
  542. }
  543. }
  544. return false;
  545. }
  546. /**
  547. * 微信oauth登陆->第一步:用户同意授权,获取code
  548. * 应用授权作用域,snsapi_base (不弹出授权页面,直接跳转,只能获取用户openid),
  549. * snsapi_userinfo (弹出授权页面,可通过openid拿到昵称、性别、所在地。并且,即使在未关注的情况下,只要用户授权,也能获取其信息)
  550. * 直接在微信打开链接,可以不填此参数。做页面302重定向时候,必须带此参数
  551. *
  552. * @param string $redirect_uri 授权后重定向的回调链接地址
  553. * @param string $scope 应用授权作用域 0为snsapi_base,1为snsapi_userinfo
  554. * @param string $state 重定向后会带上state参数,开发者可以填写任意参数值
  555. */
  556. public function redirectGetOauthCode($redirect_uri, $scope=0, $state='')
  557. {
  558. $scope = ($scope == 0) ? 'snsapi_base' : 'snsapi_userinfo';
  559. $url = self::CONNECT_OAUTH_AUTHORIZE_URL.'appid='.$this->appid.'&redirect_uri='.urlencode($redirect_uri).'&response_type=code&scope='.$scope.'&state='.$state.'#wechat_redirect';
  560. redirect($url);
  561. }
  562. /**
  563. * 微信oauth登陆->第二步:通过code换取网页授权access_token
  564. *
  565. * @param string $code
  566. */
  567. public function getSnsAccessToken($code)
  568. {
  569. $result = curlRequest(self::SNS_OAUTH_ACCESS_TOKEN_URL.'appid='.$this->appid.'&secret='.$this->appsecret.'&code='.$code.'&grant_type=authorization_code');
  570. if($result)
  571. {
  572. $jsonArr = json_decode($result, true);
  573. if(!$jsonArr || (isset($jsonArr['errcode']) && $jsonArr['errcode'] > 0)) $this->error($jsonArr);
  574. else return $jsonArr;
  575. }
  576. return false;
  577. }
  578. /**
  579. * 微信oauth登陆->第三步:刷新access_token(如果需要)
  580. * 由于access_token拥有较短的有效期,当access_token超时后,可以使用refresh_token进行刷新,
  581. * refresh_token拥有较长的有效期(7天、30天、60天、90天),当refresh_token失效的后,需要用户重新授权。
  582. *
  583. * @param string $refresh_token 填写通过access_token获取到的refresh_token参数
  584. */
  585. public function refershToken($refresh_token)
  586. {
  587. $result = curlRequest(self::SNS_OAUTH_REFRESH_TOKEN_URL.'appid='.$this->appid.'&grant_type=refresh_token&refresh_token='.$refresh_token);
  588. if($result)
  589. {
  590. $jsonArr = json_decode($result, true);
  591. if(!$jsonArr || (isset($jsonArr['errcode']) && $jsonArr['errcode'] > 0)) $this->error($jsonArr);
  592. else return $jsonArr;
  593. }
  594. return false;
  595. }
  596. /**
  597. * 微信oauth登陆->第四步:拉取用户信息(需scope为 snsapi_userinfo)
  598. * 如果网页授权作用域为snsapi_userinfo,则此时开发者可以通过access_token和openid拉取用户信息了。
  599. *
  600. * @param string $access_token 网页授权接口调用凭证,注意:此access_token与基础支持的access_token不同
  601. * @param string $openid 用户的唯一标识
  602. */
  603. public function getSnsUserInfo($access_token, $openid)
  604. {
  605. $result = curlRequest(self::SNS_USERINFO_URL.'access_token='.$access_token.'&openid='.$openid);
  606. if($result)
  607. {
  608. $jsonArr = json_decode($result, true);
  609. if(!$jsonArr || (isset($jsonArr['errcode']) && $jsonArr['errcode'] > 0)) $this->error($jsonArr);
  610. else return $jsonArr;
  611. }
  612. return false;
  613. }
  614. /**
  615. * 创建二维码ticket
  616. * 每次创建二维码ticket需要提供一个开发者自行设定的参数(scene_id),分别介绍临时二维码和永久二维码的创建二维码ticket过程。
  617. *
  618. * @param int $scene_id 场景值ID,临时二维码时为32位整型,永久二维码时最大值为1000
  619. * @param int $type 二维码类型,0为临时,1为永久
  620. * @param int $expire 该二维码有效时间,以秒为单位。 最大不超过1800。
  621. */
  622. public function createQrcode($scene_id, $type=0, $expire=1800)
  623. {
  624. if(!$this->access_token && !$this->checkAuth()) return false;
  625. $data = array();
  626. $data['action_info'] = array('scene' => array('scene_id' => $scene_id));
  627. $data['action_name'] = ($type == 0 ? 'QR_SCENE' : 'QR_LIMIT_SCENE');
  628. if($type == 0) $data['expire_seconds'] = $expire;
  629. $result = curlRequest(self::API_URL_PREFIX.self::QRCODE_CREATE_URL.'access_token='.$this->access_token, $this->jsonEncode($data), 'post');
  630. if($result)
  631. {
  632. $jsonArr = json_decode($result, true);
  633. if(!$jsonArr || (isset($jsonArr['errcode']) && $jsonArr['errcode'] > 0)) $this->error($jsonArr);
  634. else return $jsonArr;
  635. }
  636. return false;
  637. }
  638. /**
  639. * 通过ticket换取二维码
  640. * 获取二维码ticket后,开发者可用ticket换取二维码图片。请注意,本接口无须登录态即可调用。
  641. * 提醒:TICKET记得进行UrlEncode
  642. * ticket正确情况下,http 返回码是200,是一张图片,可以直接展示或者下载。
  643. * 错误情况下(如ticket非法)返回HTTP错误码404。
  644. *
  645. * @param string $ticket
  646. */
  647. public function getQrcodeUrl($ticket)
  648. {
  649. return self::SHOW_QRCODE_URL.'ticket='.urlencode($ticket);
  650. }
  651. /**
  652. * 记录接口产生的错误日志
  653. */
  654. public function error($data)
  655. {
  656. $this->errCode = $data['errcode'];
  657. $this->errMsg = $data['errmsg'];
  658. Log::info('WEIXIN API errcode:['.$this->errCode.'] errmsg:['.$this->errMsg.']');
  659. }
  660. /**
  661. * 将数组中的中文转换成json数据
  662. * @param array $arr
  663. */
  664. public function jsonEncode($arr) {
  665. $parts = array ();
  666. $is_list = false;
  667. //Find out if the given array is a numerical array
  668. $keys = array_keys ( $arr );
  669. $max_length = count ( $arr ) - 1;
  670. if (($keys [0] === 0) && ($keys [$max_length] === $max_length )) { //See if the first key is 0 and last key is length - 1
  671. $is_list = true;
  672. for($i = 0; $i < count ( $keys ); $i ++) { //See if each key correspondes to its position
  673. if ($i != $keys [$i]) { //A key fails at position check.
  674. $is_list = false; //It is an associative array.
  675. break;
  676. }
  677. }
  678. }
  679. foreach ( $arr as $key => $value ) {
  680. if (is_array ( $value )) { //Custom handling for arrays
  681. if ($is_list)
  682. $parts [] = $this->jsonEncode ( $value ); /* :RECURSION: */
  683. else
  684. $parts [] = '"' . $key . '":' . $this->jsonEncode ( $value ); /* :RECURSION: */
  685. } else {
  686. $str = '';
  687. if (! $is_list)
  688. $str = '"' . $key . '":';
  689. //Custom handling for multiple data types
  690. if (is_numeric ( $value ) && $value<2000000000)
  691. $str .= $value; //Numbers
  692. elseif ($value === false)
  693. $str .= 'false'; //The booleans
  694. elseif ($value === true)
  695. $str .= 'true';
  696. else
  697. $str .= '"' . addslashes ( $value ) . '"'; //All other things
  698. // :TODO: Is there any more datatype we should be in the lookout for? (Object?)
  699. $parts [] = $str;
  700. }
  701. }
  702. $json = implode ( ',', $parts );
  703. if ($is_list)
  704. return '[' . $json . ']'; //Return numerical JSON
  705. return '{' . $json . '}'; //Return associative JSON
  706. }
  707. /**
  708. * 检验签名
  709. */
  710. public function checkSignature()
  711. {
  712. $signature = HttpRequest::getGet('signature');
  713. $timestamp = HttpRequest::getGet('timestamp');
  714. $nonce = HttpRequest::getGet('nonce');
  715. $token = $this->token;
  716. $tmpArr = array($token, $timestamp, $nonce);
  717. sort($tmpArr);
  718. $tmpStr = implode($tmpArr);
  719. $tmpStr = sha1($tmpStr);
  720. return ($tmpStr == $signature ? true : false);
  721. }
  722. /**
  723. * 验证token是否有效
  724. */
  725. public function valid()
  726. {
  727. if($this->checkSignature()) exit(HttpRequest::getGet('echostr'));
  728. }
  729. }

人气教程排行