Class DefaultApi20
java.lang.Object
com.github.scribejava.core.builder.api.DefaultApi20
public abstract class DefaultApi20
extends java.lang.Object
Default implementation of the OAuth protocol, version 2.0
This class is meant to be extended by concrete implementations of the API, providing the endpoints and
endpoint-http-verbs.
If your API adheres to the 2.0 protocol correctly, you just need to extend this class and define the getters for your
endpoints.
If your API does something a bit different, you can override the different extractors or services, in order to
fine-tune the process. Please read the javadocs of the interfaces to get an idea of what to do.
-
Constructor Summary
Constructors Constructor Description DefaultApi20() -
Method Summary
Modifier and Type Method Description OAuth20ServicecreateService(java.lang.String apiKey, java.lang.String apiSecret, java.lang.String callback, java.lang.String defaultScope, java.lang.String responseType, java.io.OutputStream debugStream, java.lang.String userAgent, HttpClientConfig httpClientConfig, HttpClient httpClient)abstract java.lang.StringgetAccessTokenEndpoint()Returns the URL that receives the access token requests.TokenExtractor<OAuth2AccessToken>getAccessTokenExtractor()Returns the access token extractor.VerbgetAccessTokenVerb()Returns the verb for the access token endpoint (defaults to POST)protected abstract java.lang.StringgetAuthorizationBaseUrl()java.lang.StringgetAuthorizationUrl(java.lang.String responseType, java.lang.String apiKey, java.lang.String callback, java.lang.String scope, java.lang.String state, java.util.Map<java.lang.String,java.lang.String> additionalParams)Returns the URL where you should redirect your users to authenticate your application.BearerSignaturegetBearerSignature()ClientAuthenticationgetClientAuthentication()java.lang.StringgetDeviceAuthorizationEndpoint()RFC 8628 OAuth 2.0 Device Authorization GrantDeviceAuthorizationJsonExtractorgetDeviceAuthorizationExtractor()java.lang.StringgetRefreshTokenEndpoint()java.lang.StringgetRevokeTokenEndpoint()As stated in RFC 7009 OAuth 2.0 Token RevocationMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
DefaultApi20
public DefaultApi20()
-
-
Method Details
-
getAccessTokenExtractor
Returns the access token extractor.- Returns:
- access token extractor
-
getAccessTokenVerb
Returns the verb for the access token endpoint (defaults to POST)- Returns:
- access token endpoint verb
-
getAccessTokenEndpoint
public abstract java.lang.String getAccessTokenEndpoint()Returns the URL that receives the access token requests.- Returns:
- access token URL
-
getRefreshTokenEndpoint
public java.lang.String getRefreshTokenEndpoint() -
getRevokeTokenEndpoint
public java.lang.String getRevokeTokenEndpoint()As stated in RFC 7009 OAuth 2.0 Token Revocation- Returns:
- endpoint, which allows clients to notify the authorization server that a previously obtained refresh or access token is no longer needed.
- See Also:
- RFC 7009
-
getAuthorizationBaseUrl
protected abstract java.lang.String getAuthorizationBaseUrl() -
getAuthorizationUrl
public java.lang.String getAuthorizationUrl(java.lang.String responseType, java.lang.String apiKey, java.lang.String callback, java.lang.String scope, java.lang.String state, java.util.Map<java.lang.String,java.lang.String> additionalParams)Returns the URL where you should redirect your users to authenticate your application.- Parameters:
responseType- responseTypeapiKey- apiKeyadditionalParams- any additional GET params to add to the URLcallback- callbackstate- statescope- scope- Returns:
- the URL where you should redirect your users
-
createService
public OAuth20Service createService(java.lang.String apiKey, java.lang.String apiSecret, java.lang.String callback, java.lang.String defaultScope, java.lang.String responseType, java.io.OutputStream debugStream, java.lang.String userAgent, HttpClientConfig httpClientConfig, HttpClient httpClient) -
getBearerSignature
-
getClientAuthentication
-
getDeviceAuthorizationEndpoint
public java.lang.String getDeviceAuthorizationEndpoint()RFC 8628 OAuth 2.0 Device Authorization Grant- Returns:
- the device authorization endpoint
- See Also:
- RFC 8628
-
getDeviceAuthorizationExtractor
-