3 回复
https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/login.html
说明:
调用 wx.login() 获取 临时登录凭证code ,并回传到开发者服务器。
调用 auth.code2Session 接口,换取 用户唯一标识 OpenID 和 会话密钥 session_key。
php:
file_get_contents(‘https://api.weixin.qq.com/sns/jscode2session?appid=APPID&secret=SECRET&js_code=JSCODE&grant_type=authorization_code’);
JSCODE为wx.login()获取的code