Wechatwebopenid.php 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <?php
  2. namespace app\api\controller;
  3. use app\api\model\UsersModel;
  4. use think\Controller;
  5. /**
  6. * 微信公众号网页授权
  7. */
  8. class Wechatwebopenid extends Controller
  9. {
  10. /**
  11. * 获取回调地址
  12. */
  13. public function unity_url()
  14. {
  15. $data['url'] = config('site.httpurl') . '/api/Wechatwebopenid/insertcode';
  16. $data['appid'] = "wxa372e8ef8a6f0e1d";
  17. return json(['data' => $data, 'code' => 200]);
  18. }
  19. /**
  20. * 接受code
  21. * @ApiInternal // 生成接口时忽略此方法
  22. */
  23. public function insertcode()
  24. {
  25. $code = input('code');
  26. $user_id = input('state');
  27. $appid = "wxa372e8ef8a6f0e1d";
  28. $secret = "6b8033de3f71eef386a3abdfc5ba5fd4";
  29. $access_token = $this->getAccess_token($code, $appid, $secret);
  30. if (isset($access_token['errcode'])) {
  31. if ($access_token['errcode'] == 40029) {
  32. return json(['code' => 100, 'msg' => '网络错误101']);
  33. }
  34. }
  35. halt($access_token);
  36. if (isset($access_token['openid'])) {
  37. $data = array(
  38. 'user_openid' => $access_token['openid'],
  39. );
  40. $upd = UsersModel::where('user_id', $user_id)->update($data);
  41. if ($upd) {
  42. return json(['code' => 200, 'msg' => '授权成功']);
  43. } else {
  44. return json(['code' => 100, 'msg' => '网络错误104']);
  45. }
  46. } else {
  47. return json(['code' => 100, 'msg' => '网络错误104']);
  48. }
  49. // 一下为获取用户详细信息的接口
  50. // return json();
  51. // //防止过期。刷新token
  52. // $refresh_token = $this->refresh_token($appid, $access_token['refresh_token']);
  53. // if (isset($refresh_token['errcode'])) {
  54. // if ($refresh_token['errcode'] == 40029) {
  55. // return json(['code' => 100, 'msg' => '网络错误102']);
  56. // }
  57. // }
  58. // //拉取用户信息
  59. // $userInfo = $this->userInfo($refresh_token['access_token'], $appid);
  60. // if (isset($userInfo['errcode'])) {
  61. // if ($userInfo['errcode'] == 40003) {
  62. // return json(['code' => 100, 'msg' => '网络错误103']);
  63. // }
  64. // }
  65. // $data = array(
  66. // 'user_openid' => $userInfo['openid'],
  67. // 'user_unionid' => $userInfo['unionid'],
  68. // );
  69. // //$upd = UsersModel::where('user_unionid', $userInfo['unionid'])->update($data);
  70. }
  71. /**
  72. * 调取微信授权
  73. */
  74. public function toWeChat()
  75. {
  76. $data['url'] = config('site.httpurl') . '/api/Wechatwebopenid/insertcode';
  77. $data['appid'] = "wxa372e8ef8a6f0e1d";
  78. $user_id = 16;
  79. //设置请求之地
  80. $toWeChat = 'https://open.weixin.qq.com/connect/oauth2/authorize?appid=' . $data['appid'] . '&redirect_uri=' . $data['url'] . '&response_type=code&scope=snsapi_base&state=' . $user_id . '#wechat_redirect';
  81. $this->redirect($toWeChat, 302);
  82. $ch = curl_init(); //初始化CURL句柄
  83. curl_setopt($ch, CURLOPT_URL, $toWeChat); //设置请求的URL
  84. curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-type:application/json'));
  85. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //设为TRUE把curl_exec()结果转化为字串,而不是直接输出
  86. curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET"); //设置请求方式
  87. curl_setopt($ch, CURLOPT_POSTFIELDS, false); //设置提交的字符串
  88. $output = curl_exec($ch);
  89. curl_close($ch);
  90. return json_decode($output, true);
  91. }
  92. /**
  93. * 通过code换取网页授权access_token
  94. * @ApiInternal // 生成接口时忽略此方法
  95. */
  96. public function getAccess_token($code, $appid, $secret)
  97. {
  98. //设置请求之地
  99. $access_token_url = 'https://api.weixin.qq.com/sns/oauth2/access_token?appid=' . $appid . '&secret=' . $secret . '&code=' . $code . '&grant_type=authorization_code';
  100. $ch = curl_init(); //初始化CURL句柄
  101. curl_setopt($ch, CURLOPT_URL, $access_token_url); //设置请求的URL
  102. curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-type:application/json'));
  103. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //设为TRUE把curl_exec()结果转化为字串,而不是直接输出
  104. curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET"); //设置请求方式
  105. curl_setopt($ch, CURLOPT_POSTFIELDS, false); //设置提交的字符串
  106. $output = curl_exec($ch);
  107. curl_close($ch);
  108. return json_decode($output, true);
  109. }
  110. /**
  111. * 防止过期刷新token
  112. * @ApiInternal // 生成接口时忽略此方法
  113. */
  114. public function refresh_token($appid, $refresh_token)
  115. {
  116. //设置请求之地
  117. $refresh_token = 'https://api.weixin.qq.com/sns/oauth2/refresh_token?appid=' . $appid . '&grant_type=refresh_token&refresh_token=' . $refresh_token;
  118. $ch = curl_init(); //初始化CURL句柄
  119. curl_setopt($ch, CURLOPT_URL, $refresh_token); //设置请求的URL
  120. curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-type:application/json'));
  121. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //设为TRUE把curl_exec()结果转化为字串,而不是直接输出
  122. curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET"); //设置请求方式
  123. curl_setopt($ch, CURLOPT_POSTFIELDS, false); //设置提交的字符串
  124. $output = curl_exec($ch);
  125. curl_close($ch);
  126. return json_decode($output, true);
  127. }
  128. /**
  129. * 拉取用户信息
  130. * @ApiInternal // 生成接口时忽略此方法
  131. */
  132. public function userInfo($access_token, $appid)
  133. {
  134. //设置请求之地
  135. $userInfo = 'https://api.weixin.qq.com/sns/userinfo?access_token=' . $access_token . '&openid=' . $appid . '&lang=zh_CN';
  136. $ch = curl_init(); //初始化CURL句柄
  137. curl_setopt($ch, CURLOPT_URL, $userInfo); //设置请求的URL
  138. curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-type:application/json'));
  139. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //设为TRUE把curl_exec()结果转化为字串,而不是直接输出
  140. curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET"); //设置请求方式
  141. curl_setopt($ch, CURLOPT_POSTFIELDS, false); //设置提交的字符串
  142. $output = curl_exec($ch);
  143. curl_close($ch);
  144. return json_decode($output, true);
  145. }
  146. }