Blogger Information
Blog 55
fans 0
comment 0
visits 59281
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
小程序授权获取openid
南鸢离梦的博客
Original
2938 people have browsed it
  1. code 换取 session_key
  2. ​这是一个 HTTPS 接口,开发者服务器使用登录凭证 code 获取 session_key openid
  3. session_key 是对用户数据进行加密签名的密钥。为了自身应用安全,session_key 不应该在网络上传输。
  4. 接口地址:
  5. https://api.weixin.qq.com/sns/jscode2session?appid=APPID&secret=SECRET&js_code=JSCODE&grant_type=authorization_code
  6. 请求参数:
  7. 参数 必填 说明
  8. appid 小程序唯一标识
  9. secret 小程序的 app secret
  10. js_code 登录时获取的 code
  11. grant_type 填写为 authorization_code
  12. 返回参数:
  13. 参数 说明
  14. openid 用户唯一标识
  15. session_key 会话密钥
  16. unionid 用户在开放平台的唯一标识符。本字段在满足一定条件的情况下才返回。具体参看UnionID机制说明
  17. 1.前端自己请求微信的接口
  18. 传入js_code的问题
  19. https://api.weixin.qq.com/sns/jscode2session?appid=APPID&secret=SECRET&js_code=JSCODE&grant_type=authorization_code
  20. 这个本地测试的时候没有一点问题
  21. 但是一到审核通过就拿不到;
  22. 还是需要通过后台的处理去拿出来
  23. 第一步后台拿到 appid 秘钥
  24. 前端把js_code传给后台后台接受之后发送微信请求拿出openid
  25. php具体的代码
  26. public function wxopenid(){
  27. $appId = '****************';
  28. $secret = '************************';
  29. $js_code = input('post.js_code');
  30. //创建请求数据
  31. $url = "https://api.weixin.qq.com/sns/jscode2session?appid={$appId}&secret={$secret}&js_code={$js_code}&grant_type=authorization_code";
  32. $data = $this->curl_get_https($url);
  33. print_r($data);
  34. }
  35. /**
  36. * 模拟get进行url请求
  37. * @param string $url
  38. * @param string $param
  39. */
  40. public function curl_get_https($url){
  41. $curl = curl_init(); // 启动一个CURL会话
  42. curl_setopt($curl, CURLOPT_URL, $url);
  43. curl_setopt($curl, CURLOPT_HEADER, 0);
  44. curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  45. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); // 跳过证书检查
  46. // curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, true); // 从证书中检查SSL加密算法是否存在
  47. $tmpInfo = curl_exec($curl); //返回api的json对象
  48. //关闭URL请求
  49. curl_close($curl);
  50. return $tmpInfo; //返回json对象
  51. }
  52. ————————————————
  53. 版权声明:本文为CSDN博主「cyclv」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
  54. 原文链接:https://blog.csdn.net/weixin_41487694/article/details/79497838
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post