微信开放平台和微信公众号(公众平台)登录完全不同,以下是引用的区别
微信开放平台登录
1.PC端:微信扫码登录
https://open.weixin.qq.com/connect/qrconnect?appid={0}&redirect_uri={1}&response_type=code&scope=snsapi_login&state={2}#wechat_redirect
2.移动端:直接授权登录
https://open.weixin.qq.com/connect/oauth2/authorize?appid={0}&redirect_uri={1}&response_type=code&scope=snsapi_login&state={2}#wechat_redirect
微信公众号(公众平台)登录
分为静默登录与非静默登录,非静默登录时,会调起微信获取用户权限确认框,用户需要同意,引用时主要区别在scope参数:snsapi_base(静默登录)、snsapi_userinfo(非静默登录)
https://open.weixin.qq.com/connect/oauth2/authorize?appid={0}&redirect_uri={1}&response_type=code&scope=snsapi_userinfo&state=STATE#wechat_redirect