Wechatwebopenid.php 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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 = config('site.httpurl') . '/api/Wechatwebopenid/insertcode';
  16. return json(['data' => $data, 'code' => 200]);
  17. }
  18. /**
  19. * 接受code
  20. * @ApiInternal // 生成接口时忽略此方法
  21. */
  22. public function insertcode()
  23. {
  24. $code = input('code');
  25. $appid = "wxa372e8ef8a6f0e1d";
  26. $secret = "6b8033de3f71eef386a3abdfc5ba5fd4";
  27. $access_token = $this->getAccess_token($code, $appid, $secret);
  28. if (isset($access_token['errcode'])) {
  29. if ($access_token['errcode'] == 40029) {
  30. return json(['code' => 100, 'msg' => '网络错误']);
  31. }
  32. }
  33. //防止过期。刷新token
  34. $refresh_token = $this->refresh_token($appid, $access_token['refresh_token']);
  35. if (isset($refresh_token['errcode'])) {
  36. if ($refresh_token['errcode'] == 40029) {
  37. return json(['code' => 100, 'msg' => '网络错误']);
  38. }
  39. }
  40. //拉取用户信息
  41. $userInfo = $this->userInfo($refresh_token['access_token'], $appid);
  42. if (isset($userInfo['errcode'])) {
  43. if ($userInfo['errcode'] == 40003) {
  44. return json(['code' => 100, 'msg' => '网络错误']);
  45. }
  46. }
  47. $data = array(
  48. 'user_openid' => $userInfo['openid'],
  49. 'user_unionid' => $userInfo['unionid'],
  50. );
  51. //$upd = UsersModel::where('user_unionid', $userInfo['unionid'])->update($data);
  52. $upd = UsersModel::where('user_unionid', $userInfo['unionid'])->update($data);
  53. if ($upd) {
  54. return json(['code' => 200, 'msg' => '授权成功']);
  55. } else {
  56. return json(['code' => 100, 'msg' => '网络错误']);
  57. }
  58. }
  59. /**
  60. * 通过code换取网页授权access_token
  61. * @ApiInternal // 生成接口时忽略此方法
  62. */
  63. public function getAccess_token($code, $appid, $secret)
  64. {
  65. //设置请求之地
  66. $access_token_url = 'https://api.weixin.qq.com/sns/oauth2/access_token?appid=' . $appid . '&secret=' . $secret . '&code=' . $code . '&grant_type=authorization_code';
  67. $ch = curl_init(); //初始化CURL句柄
  68. curl_setopt($ch, CURLOPT_URL, $access_token_url); //设置请求的URL
  69. curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-type:application/json'));
  70. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //设为TRUE把curl_exec()结果转化为字串,而不是直接输出
  71. curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET"); //设置请求方式
  72. curl_setopt($ch, CURLOPT_POSTFIELDS, false); //设置提交的字符串
  73. $output = curl_exec($ch);
  74. curl_close($ch);
  75. return json_decode($output, true);
  76. }
  77. /**
  78. * 防止过期刷新token
  79. * @ApiInternal // 生成接口时忽略此方法
  80. */
  81. public function refresh_token($appid, $refresh_token)
  82. {
  83. //设置请求之地
  84. $refresh_token = 'https://api.weixin.qq.com/sns/oauth2/refresh_token?appid=' . $appid . '&grant_type=refresh_token&refresh_token=' . $refresh_token;
  85. $ch = curl_init(); //初始化CURL句柄
  86. curl_setopt($ch, CURLOPT_URL, $refresh_token); //设置请求的URL
  87. curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-type:application/json'));
  88. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //设为TRUE把curl_exec()结果转化为字串,而不是直接输出
  89. curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET"); //设置请求方式
  90. curl_setopt($ch, CURLOPT_POSTFIELDS, false); //设置提交的字符串
  91. $output = curl_exec($ch);
  92. curl_close($ch);
  93. return json_decode($output, true);
  94. }
  95. /**
  96. * 拉取用户信息
  97. * @ApiInternal // 生成接口时忽略此方法
  98. */
  99. public function userInfo($access_token, $appid)
  100. {
  101. //设置请求之地
  102. $userInfo = 'https://api.weixin.qq.com/sns/userinfo?access_token=' . $access_token . '&openid=' . $appid . '&lang=zh_CN';
  103. $ch = curl_init(); //初始化CURL句柄
  104. curl_setopt($ch, CURLOPT_URL, $userInfo); //设置请求的URL
  105. curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-type:application/json'));
  106. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //设为TRUE把curl_exec()结果转化为字串,而不是直接输出
  107. curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET"); //设置请求方式
  108. curl_setopt($ch, CURLOPT_POSTFIELDS, false); //设置提交的字符串
  109. $output = curl_exec($ch);
  110. curl_close($ch);
  111. return json_decode($output, true);
  112. }
  113. }