public class AuthMicrosoftRequest extends AuthDefaultRequest
authStateCache, config, source
Constructor and Description |
---|
AuthMicrosoftRequest(AuthConfig config) |
AuthMicrosoftRequest(AuthConfig config,
AuthStateCache authStateCache) |
Modifier and Type | Method and Description |
---|---|
protected String |
accessTokenUrl(String code)
返回获取accessToken的url
|
String |
authorize(String state)
返回带
state 参数的授权url,授权回调时会带上这个state |
protected AuthToken |
getAccessToken(AuthCallback authCallback)
获取access token
|
protected AuthUser |
getUserInfo(AuthToken authToken)
使用token换取用户信息
|
AuthResponse |
refresh(AuthToken authToken)
刷新access token (续期)
|
protected String |
refreshTokenUrl(String refreshToken)
返回获取accessToken的url
|
protected String |
userInfoUrl(AuthToken authToken)
返回获取userInfo的url
|
authorize, doGetAuthorizationCode, doGetRevoke, doGetUserInfo, doPostAuthorizationCode, doPostRevoke, doPostUserInfo, getRealState, getScopes, login, revokeUrl
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
revoke
public AuthMicrosoftRequest(AuthConfig config)
public AuthMicrosoftRequest(AuthConfig config, AuthStateCache authStateCache)
protected AuthToken getAccessToken(AuthCallback authCallback)
AuthDefaultRequest
getAccessToken
in class AuthDefaultRequest
authCallback
- 授权成功后的回调参数AuthDefaultRequest.authorize()
,
AuthDefaultRequest.authorize(String)
protected AuthUser getUserInfo(AuthToken authToken)
AuthDefaultRequest
getUserInfo
in class AuthDefaultRequest
authToken
- token信息AuthDefaultRequest.getAccessToken(AuthCallback)
public AuthResponse refresh(AuthToken authToken)
authToken
- 登录成功后返回的Token信息public String authorize(String state)
state
参数的授权url,授权回调时会带上这个state
authorize
in interface AuthRequest
authorize
in class AuthDefaultRequest
state
- state 验证授权流程的参数,可以防止csrfprotected String accessTokenUrl(String code)
accessTokenUrl
in class AuthDefaultRequest
code
- 授权codeprotected String userInfoUrl(AuthToken authToken)
userInfoUrl
in class AuthDefaultRequest
authToken
- 用户授权后的tokenprotected String refreshTokenUrl(String refreshToken)
refreshTokenUrl
in class AuthDefaultRequest
refreshToken
- 用户授权后的tokenCopyright © 2021. All rights reserved.