Uses of Class
com.github.scribejava.core.model.OAuth2AccessToken
Packages that use OAuth2AccessToken
Package
Description
-
Uses of OAuth2AccessToken in com.github.scribejava.core.builder.api
Methods in com.github.scribejava.core.builder.api that return types with arguments of type OAuth2AccessTokenModifier and TypeMethodDescriptionDefaultApi20.getAccessTokenExtractor()Returns the access token extractor. -
Uses of OAuth2AccessToken in com.github.scribejava.core.extractors
Methods in com.github.scribejava.core.extractors that return OAuth2AccessTokenModifier and TypeMethodDescriptionprotected OAuth2AccessTokenOAuth2AccessTokenJsonExtractor.createToken(String accessToken, String tokenType, Integer expiresIn, String refreshToken, String scope, com.fasterxml.jackson.databind.JsonNode response, String rawResponse) Extracts the concrete type of token from the contents of an Http Response -
Uses of OAuth2AccessToken in com.github.scribejava.core.oauth
Methods in com.github.scribejava.core.oauth that return OAuth2AccessTokenModifier and TypeMethodDescriptionOAuth20Service.getAccessToken(AccessTokenRequestParams params) OAuth20Service.getAccessToken(String code) OAuth20Service.getAccessTokenClientCredentialsGrant()OAuth20Service.getAccessTokenClientCredentialsGrant(String scope) OAuth20Service.getAccessTokenDeviceAuthorizationGrant(DeviceAuthorization deviceAuthorization) Attempts to get a token from a server.OAuth20Service.getAccessTokenPasswordGrant(String username, String password) OAuth20Service.getAccessTokenPasswordGrant(String username, String password, String scope) OAuth20Service.pollAccessTokenDeviceAuthorizationGrant(DeviceAuthorization deviceAuthorization) Periodically tries to get a token from a server (waiting for the user to give consent).OAuth20Service.refreshAccessToken(String refreshToken) OAuth20Service.refreshAccessToken(String refreshToken, String scope) protected OAuth2AccessTokenOAuth20Service.sendAccessTokenRequestSync(OAuthRequest request) Methods in com.github.scribejava.core.oauth that return types with arguments of type OAuth2AccessTokenModifier and TypeMethodDescriptionOAuth20Service.getAccessToken(AccessTokenRequestParams params, OAuthAsyncRequestCallback<OAuth2AccessToken> callback) Start the request to retrieve the access token.OAuth20Service.getAccessToken(String code, OAuthAsyncRequestCallback<OAuth2AccessToken> callback) OAuth20Service.getAccessTokenAsync(AccessTokenRequestParams params) OAuth20Service.getAccessTokenAsync(String code) OAuth20Service.getAccessTokenClientCredentialsGrant(OAuthAsyncRequestCallback<OAuth2AccessToken> callback) Start the request to retrieve the access token using client-credentials grant.OAuth20Service.getAccessTokenClientCredentialsGrant(String scope, OAuthAsyncRequestCallback<OAuth2AccessToken> callback) OAuth20Service.getAccessTokenClientCredentialsGrantAsync()OAuth20Service.getAccessTokenClientCredentialsGrantAsync(String scope) OAuth20Service.getAccessTokenDeviceAuthorizationGrant(DeviceAuthorization deviceAuthorization, OAuthAsyncRequestCallback<OAuth2AccessToken> callback) OAuth20Service.getAccessTokenDeviceAuthorizationGrantAsync(DeviceAuthorization deviceAuthorization) OAuth20Service.getAccessTokenPasswordGrantAsync(String username, String password) OAuth20Service.getAccessTokenPasswordGrantAsync(String username, String password, OAuthAsyncRequestCallback<OAuth2AccessToken> callback) Request Access Token Password Grant async versionOAuth20Service.getAccessTokenPasswordGrantAsync(String username, String password, String scope) OAuth20Service.getAccessTokenPasswordGrantAsync(String username, String password, String scope, OAuthAsyncRequestCallback<OAuth2AccessToken> callback) OAuth20Service.refreshAccessToken(String refreshToken, OAuthAsyncRequestCallback<OAuth2AccessToken> callback) OAuth20Service.refreshAccessToken(String refreshToken, String scope, OAuthAsyncRequestCallback<OAuth2AccessToken> callback) OAuth20Service.refreshAccessTokenAsync(String refreshToken) OAuth20Service.refreshAccessTokenAsync(String refreshToken, String scope) protected Future<OAuth2AccessToken>OAuth20Service.sendAccessTokenRequestAsync(OAuthRequest request) protected Future<OAuth2AccessToken>OAuth20Service.sendAccessTokenRequestAsync(OAuthRequest request, OAuthAsyncRequestCallback<OAuth2AccessToken> callback) Methods in com.github.scribejava.core.oauth with parameters of type OAuth2AccessTokenModifier and TypeMethodDescriptionvoidOAuth20Service.signRequest(OAuth2AccessToken accessToken, OAuthRequest request) Method parameters in com.github.scribejava.core.oauth with type arguments of type OAuth2AccessTokenModifier and TypeMethodDescriptionOAuth20Service.getAccessToken(AccessTokenRequestParams params, OAuthAsyncRequestCallback<OAuth2AccessToken> callback) Start the request to retrieve the access token.OAuth20Service.getAccessToken(String code, OAuthAsyncRequestCallback<OAuth2AccessToken> callback) OAuth20Service.getAccessTokenClientCredentialsGrant(OAuthAsyncRequestCallback<OAuth2AccessToken> callback) Start the request to retrieve the access token using client-credentials grant.OAuth20Service.getAccessTokenClientCredentialsGrant(String scope, OAuthAsyncRequestCallback<OAuth2AccessToken> callback) OAuth20Service.getAccessTokenDeviceAuthorizationGrant(DeviceAuthorization deviceAuthorization, OAuthAsyncRequestCallback<OAuth2AccessToken> callback) OAuth20Service.getAccessTokenPasswordGrantAsync(String username, String password, OAuthAsyncRequestCallback<OAuth2AccessToken> callback) Request Access Token Password Grant async versionOAuth20Service.getAccessTokenPasswordGrantAsync(String username, String password, String scope, OAuthAsyncRequestCallback<OAuth2AccessToken> callback) OAuth20Service.refreshAccessToken(String refreshToken, OAuthAsyncRequestCallback<OAuth2AccessToken> callback) OAuth20Service.refreshAccessToken(String refreshToken, String scope, OAuthAsyncRequestCallback<OAuth2AccessToken> callback) protected Future<OAuth2AccessToken>OAuth20Service.sendAccessTokenRequestAsync(OAuthRequest request, OAuthAsyncRequestCallback<OAuth2AccessToken> callback)