public class AuthorizationCodeFlow : object, IAuthorizationCodeFlow, IDisposable
Thread-safe OAuth 2.0 authorization code flow that manages and persists end-user credentials.
This is designed to simplify the flow in which an end-user authorizes the application to access their protected data, and then the application has access to their data based on an access token and a refresh token to refresh that access token when it expires.
Derived Types
Namespace
Google.Apis.Auth.OAuth2.FlowsAssembly
Google.Apis.Auth.dll
Constructors
AuthorizationCodeFlow(AuthorizationCodeFlow.Initializer)
public AuthorizationCodeFlow(AuthorizationCodeFlow.Initializer initializer)
Constructs a new flow using the initializer's properties.
Parameter | |
---|---|
Name | Description |
initializer | AuthorizationCodeFlow.Initializer |
Properties
AccessMethod
public IAccessMethod AccessMethod { get; }
Gets the method for presenting the access token to the resource server.
Property Value | |
---|---|
Type | Description |
IAccessMethod |
AuthorizationServerUrl
public string AuthorizationServerUrl { get; }
Gets the authorization code server URL.
Property Value | |
---|---|
Type | Description |
String |
ClientSecrets
public ClientSecrets ClientSecrets { get; }
Gets the client secrets which includes the client identifier and its secret.
Property Value | |
---|---|
Type | Description |
ClientSecrets |
Clock
public IClock Clock { get; }
Gets the clock.
Property Value | |
---|---|
Type | Description |
IClock |
DataStore
public IDataStore DataStore { get; }
Gets the data store used to store the credentials.
Property Value | |
---|---|
Type | Description |
IDataStore |
HttpClient
public ConfigurableHttpClient HttpClient { get; }
Gets the HTTP client used to make authentication requests to the server.
Property Value | |
---|---|
Type | Description |
ConfigurableHttpClient |
Scopes
public IEnumerable<string> Scopes { get; }
Gets the scopes which indicate the API access your application is requesting.
Property Value | |
---|---|
Type | Description |
IEnumerable<String> |
TokenServerUrl
public string TokenServerUrl { get; }
Gets the token server URL.
Property Value | |
---|---|
Type | Description |
String |
Methods
CreateAuthorizationCodeRequest(String)
public virtual AuthorizationCodeRequestUrl CreateAuthorizationCodeRequest(string redirectUri)
Creates an authorization code request with the specified redirect URI.
Parameter | |
---|---|
Name | Description |
redirectUri | String |
Returns | |
---|---|
Type | Description |
AuthorizationCodeRequestUrl |
DeleteTokenAsync(String, CancellationToken)
public Task DeleteTokenAsync(string userId, CancellationToken taskCancellationToken)
Asynchronously deletes the user's token using the flow's IDataStore.
Parameters | |
---|---|
Name | Description |
userId | String User identifier. |
taskCancellationToken | CancellationToken Cancellation token to cancel operation. |
Returns | |
---|---|
Type | Description |
Task |
Dispose()
public void Dispose()
ExchangeCodeForTokenAsync(String, String, String, CancellationToken)
public Task<TokenResponse> ExchangeCodeForTokenAsync(string userId, string code, string redirectUri, CancellationToken taskCancellationToken)
Asynchronously exchanges code with a token.
Parameters | |
---|---|
Name | Description |
userId | String User identifier. |
code | String Authorization code received from the authorization server. |
redirectUri | String Redirect URI which is used in the token request. |
taskCancellationToken | CancellationToken Cancellation token to cancel operation. |
Returns | |
---|---|
Type | Description |
Task<TokenResponse> | Token response which contains the access token. |
FetchTokenAsync(String, TokenRequest, CancellationToken)
public Task<TokenResponse> FetchTokenAsync(string userId, TokenRequest request, CancellationToken taskCancellationToken)
Retrieve a new token from the server using the specified request.
Parameters | |
---|---|
Name | Description |
userId | String User identifier. |
request | TokenRequest Token request. |
taskCancellationToken | CancellationToken Cancellation token to cancel operation. |
Returns | |
---|---|
Type | Description |
Task<TokenResponse> | Token response with the new access token. |
LoadTokenAsync(String, CancellationToken)
public Task<TokenResponse> LoadTokenAsync(string userId, CancellationToken taskCancellationToken)
Asynchronously loads the user's token using the flow's IDataStore.
Parameters | |
---|---|
Name | Description |
userId | String User identifier |
taskCancellationToken | CancellationToken Cancellation token to cancel operation |
Returns | |
---|---|
Type | Description |
Task<TokenResponse> | Token response |
RefreshTokenAsync(String, String, CancellationToken)
public Task<TokenResponse> RefreshTokenAsync(string userId, string refreshToken, CancellationToken taskCancellationToken)
Asynchronously refreshes an access token using a refresh token.
Parameters | |
---|---|
Name | Description |
userId | String User identifier. |
refreshToken | String Refresh token which is used to get a new access token. |
taskCancellationToken | CancellationToken Cancellation token to cancel operation. |
Returns | |
---|---|
Type | Description |
Task<TokenResponse> | Token response which contains the access token and the input refresh token. |
RevokeTokenAsync(String, String, CancellationToken)
public virtual Task RevokeTokenAsync(string userId, string token, CancellationToken taskCancellationToken)
Asynchronously revokes the specified token. This method disconnects the user's account from the OAuth 2.0 application. It should be called upon removing the user account from the site.
Parameters | |
---|---|
Name | Description |
userId | String User identifier. |
token | String Access token to be revoked. |
taskCancellationToken | CancellationToken Cancellation token to cancel operation. |
Returns | |
---|---|
Type | Description |
Task |
|
If revoking the token succeeds, the user's credential is removed from the data store and the user MUST authorize the application again before the application can access the user's private resources.
ShouldForceTokenRetrieval()
public virtual bool ShouldForceTokenRetrieval()
Indicates if a new token needs to be retrieved and stored regardless of normal circumstances.
Returns | |
---|---|
Type | Description |
Boolean |