Uses of Class
com.github.scribejava.core.model.OAuthRequest
-
Uses of OAuthRequest in com.github.scribejava.core.exceptions
Constructors in com.github.scribejava.core.exceptions with parameters of type OAuthRequest Constructor Description OAuthParametersMissingException(OAuthRequest request)Default constructor. -
Uses of OAuthRequest in com.github.scribejava.core.extractors
Methods in com.github.scribejava.core.extractors with parameters of type OAuthRequest Modifier and Type Method Description protected voidBaseStringExtractorImpl. checkPreconditions(OAuthRequest request)java.lang.StringBaseStringExtractor. extract(OAuthRequest request)Extracts an url-encoded base string from theOAuthRequest.java.lang.StringBaseStringExtractorImpl. extract(OAuthRequest request)Extracts an url-encoded base string from theOAuthRequest.java.lang.StringHeaderExtractor. extract(OAuthRequest request)Generates an OAuth 'Authorization' Http header to include in requests as the signature.java.lang.StringHeaderExtractorImpl. extract(OAuthRequest request)Generates an OAuth 'Authorization' Http header to include in requests as the signature.protected java.lang.StringBaseStringExtractorImpl. getSortedAndEncodedParams(OAuthRequest request)protected java.lang.StringBaseStringExtractorImpl. getUrl(OAuthRequest request)https://tools.ietf.org/html/rfc5849#section-3.4.1.2protected java.lang.StringBaseStringExtractorImpl. getVerb(OAuthRequest request) -
Uses of OAuthRequest in com.github.scribejava.core.oauth
Methods in com.github.scribejava.core.oauth that return OAuthRequest Modifier and Type Method Description protected OAuthRequestOAuth20Service. createAccessTokenClientCredentialsGrantRequest(java.lang.String scope)protected OAuthRequestOAuth20Service. createAccessTokenDeviceAuthorizationGrantRequest(DeviceAuthorization deviceAuthorization)protected OAuthRequestOAuth20Service. createAccessTokenPasswordGrantRequest(java.lang.String username, java.lang.String password, java.lang.String scope)protected OAuthRequestOAuth20Service. createAccessTokenRequest(AccessTokenRequestParams params)protected OAuthRequestOAuth20Service. createDeviceAuthorizationCodesRequest(java.lang.String scope)protected OAuthRequestOAuth20Service. createRefreshTokenRequest(java.lang.String refreshToken, java.lang.String scope)protected OAuthRequestOAuth20Service. createRevokeTokenRequest(java.lang.String tokenToRevoke, TokenTypeHint tokenTypeHint)protected OAuthRequestOAuth10aService. prepareAccessTokenRequest(OAuth1RequestToken requestToken, java.lang.String oauthVerifier)protected OAuthRequestOAuth10aService. prepareRequestTokenRequest()Methods in com.github.scribejava.core.oauth with parameters of type OAuthRequest Modifier and Type Method Description protected voidOAuth10aService. addOAuthParams(OAuthRequest request, java.lang.String tokenSecret)protected voidOAuth10aService. appendSignature(OAuthRequest request)ResponseOAuthService. execute(OAuthRequest request)java.util.concurrent.Future<Response>OAuthService. execute(OAuthRequest request, OAuthAsyncRequestCallback<Response> callback)<R> java.util.concurrent.Future<R>OAuthService. execute(OAuthRequest request, OAuthAsyncRequestCallback<R> callback, OAuthRequest.ResponseConverter<R> converter)java.util.concurrent.Future<Response>OAuthService. executeAsync(OAuthRequest request)protected java.util.concurrent.Future<OAuth2AccessToken>OAuth20Service. sendAccessTokenRequestAsync(OAuthRequest request)protected java.util.concurrent.Future<OAuth2AccessToken>OAuth20Service. sendAccessTokenRequestAsync(OAuthRequest request, OAuthAsyncRequestCallback<OAuth2AccessToken> callback)protected OAuth2AccessTokenOAuth20Service. sendAccessTokenRequestSync(OAuthRequest request)voidOAuth10aService. signRequest(OAuth1AccessToken token, OAuthRequest request)voidOAuth20Service. signRequest(OAuth2AccessToken accessToken, OAuthRequest request)voidOAuth20Service. signRequest(java.lang.String accessToken, OAuthRequest request) -
Uses of OAuthRequest in com.github.scribejava.core.oauth2.bearersignature
Methods in com.github.scribejava.core.oauth2.bearersignature with parameters of type OAuthRequest Modifier and Type Method Description voidBearerSignature. signRequest(java.lang.String accessToken, OAuthRequest request)voidBearerSignatureAuthorizationRequestHeaderField. signRequest(java.lang.String accessToken, OAuthRequest request)voidBearerSignatureURIQueryParameter. signRequest(java.lang.String accessToken, OAuthRequest request) -
Uses of OAuthRequest in com.github.scribejava.core.oauth2.clientauthentication
Methods in com.github.scribejava.core.oauth2.clientauthentication with parameters of type OAuthRequest Modifier and Type Method Description voidClientAuthentication. addClientAuthentication(OAuthRequest request, java.lang.String apiKey, java.lang.String apiSecret)voidHttpBasicAuthenticationScheme. addClientAuthentication(OAuthRequest request, java.lang.String apiKey, java.lang.String apiSecret)voidRequestBodyAuthenticationScheme. addClientAuthentication(OAuthRequest request, java.lang.String apiKey, java.lang.String apiSecret)