1. 在页面中引导用户进入微信授权页面:(将回调页面通过URL参数传递到微信的授权页,并跳转) string wxAuthUrl = "https://open.weixin.qq.com/connect/oauth2/authorize" + "?appid=" + wxAppId + //微信公众号的AppId "&redirect_uri=" + wxRedirectUri + //回调页面地址 "&response_type=code" + "&scope=snsapi_userinfo" + "&state=STATE&quo...
阅读正文