-
-
Notifications
You must be signed in to change notification settings - Fork 9k
MP_OAuth2网页授权
老猫烧须 edited this page Mar 16, 2021
·
19 revisions
(如有错误请指教)
首先构造网页授权url,然后构成超链接让用户点击:
WxMpService wxMpService = ...;
String url = ...;
wxMpService.getOauth2Service().buildAuthorizationUrl(url, WxConsts.OAuth2Scope.SNSAPI_USERINFO, null)
当用户同意授权后,会回调所设置的url并把authorization code传过来,然后用这个code获得access token,其中也包含用户的openid等信息
WxMpOAuth2AccessToken wxMpOAuth2AccessToken = wxMpService.getOAuth2Service().getAccessToken(code);
WxMpUser wxMpUser = wxMpService.getOAuth2Service().getUserInfo(wxMpOAuth2AccessToken, null);
wxMpOAuth2AccessToken = wxMpService.getOAuth2Service().refreshAccessToken(wxMpOAuth2AccessToken.getRefreshToken());
boolean valid = wxMpService.getOAuth2Service().validateAccessToken(wxMpOAuth2AccessToken);