PC网站微信扫码登录

PC站通过微信扫码登录网站。

参考文档:微信官方文档

1.通过在PC端打开以下链接: https://open.weixin.qq.com/connect/qrconnect?appid=APPID&redirect_uri=REDIRECT_URI&response_type=code&scope=SCOPE&state=STATE#wechat_redirect

用户允许授权后,将会重定向到redirect_uri的网址上,并且带上code和state参数

2.:通过code获取access_token

https://api.weixin.qq.com/sns/oauth2/access_token?appid=APPID&secret=SECRET&code=CODE&grant_type=authorization_code

把code提交给服务器,服务器请求腾讯接口获得用户的唯一标识openid。

拿到openid进行用户绑定和和登录逻辑的实现。

你可能感兴趣的:(微信)