Interface IAuthorizationCodeFlow (1.50.0)

public interface IAuthorizationCodeFlow : IDisposable

OAuth 2.0 authorization code flow that manages and persists end-user credentials.

Namespace

Google.Apis.Auth.OAuth2.Flows

Assembly

Google.Apis.Auth.dll

Properties

AccessMethod

IAccessMethod AccessMethod { get; }

Gets the method for presenting the access token to the resource server.

Property Value
TypeDescription
IAccessMethod

Clock

IClock Clock { get; }

Gets the clock.

Property Value
TypeDescription
IClock

DataStore

IDataStore DataStore { get; }

Gets the data store used to store the credentials.

Property Value
TypeDescription
IDataStore

Methods

CreateAuthorizationCodeRequest(String)

AuthorizationCodeRequestUrl CreateAuthorizationCodeRequest(string redirectUri)

Creates an authorization code request with the specified redirect URI.

Parameter
NameDescription
redirectUriString
Returns
TypeDescription
AuthorizationCodeRequestUrl

DeleteTokenAsync(String, CancellationToken)

Task DeleteTokenAsync(string userId, CancellationToken taskCancellationToken)

Asynchronously deletes the user's token using the flow's IDataStore.

Parameters
NameDescription
userIdString

User identifier.

taskCancellationTokenCancellationToken

Cancellation token to cancel operation.

Returns
TypeDescription
Task

ExchangeCodeForTokenAsync(String, String, String, CancellationToken)

Task<TokenResponse> ExchangeCodeForTokenAsync(string userId, string code, string redirectUri, CancellationToken taskCancellationToken)

Asynchronously exchanges code with a token.

Parameters
NameDescription
userIdString

User identifier.

codeString

Authorization code received from the authorization server.

redirectUriString

Redirect URI which is used in the token request.

taskCancellationTokenCancellationToken

Cancellation token to cancel operation.

Returns
TypeDescription
Task<TokenResponse>

Token response which contains the access token.

LoadTokenAsync(String, CancellationToken)

Task<TokenResponse> LoadTokenAsync(string userId, CancellationToken taskCancellationToken)

Asynchronously loads the user's token using the flow's IDataStore.

Parameters
NameDescription
userIdString

User identifier

taskCancellationTokenCancellationToken

Cancellation token to cancel operation

Returns
TypeDescription
Task<TokenResponse>

Token response

RefreshTokenAsync(String, String, CancellationToken)

Task<TokenResponse> RefreshTokenAsync(string userId, string refreshToken, CancellationToken taskCancellationToken)

Asynchronously refreshes an access token using a refresh token.

Parameters
NameDescription
userIdString

User identifier.

refreshTokenString

Refresh token which is used to get a new access token.

taskCancellationTokenCancellationToken

Cancellation token to cancel operation.

Returns
TypeDescription
Task<TokenResponse>

Token response which contains the access token and the input refresh token.

RevokeTokenAsync(String, String, CancellationToken)

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
NameDescription
userIdString

User identifier.

tokenString

Access token to be revoked.

taskCancellationTokenCancellationToken

Cancellation token to cancel operation.

Returns
TypeDescription
Task

true if the token was revoked successfully.

Remarks

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()

bool ShouldForceTokenRetrieval()

Indicates if a new token needs to be retrieved and stored regardless of normal circumstances.

Returns
TypeDescription
Boolean

Extension Method