Class AuthorizationCodeFlow.Initializer (1.69.0)

public class AuthorizationCodeFlow.Initializer

An initializer class for the authorization code flow.

Inheritance

object > AuthorizationCodeFlow.Initializer

Namespace

Google.Apis.Auth.OAuth2.Flows

Assembly

Google.Apis.Auth.dll

Constructors

Initializer(string, string)

public Initializer(string authorizationServerUrl, string tokenServerUrl)

Constructs a new initializer.

Parameters
Name Description
authorizationServerUrl string

Authorization server URL

tokenServerUrl string

Token server URL

Properties

AccessMethod

public IAccessMethod AccessMethod { get; set; }

Gets or sets the method for presenting the access token to the resource server. The default value is BearerToken.AuthorizationHeaderAccessMethod.

Property Value
Type Description
IAccessMethod

AuthorizationServerUrl

public string AuthorizationServerUrl { get; }

Gets or sets the authorization server URL.

Property Value
Type Description
string

ClientSecrets

public ClientSecrets ClientSecrets { get; set; }

Gets or sets the client secrets which includes the client identifier and its secret.

Property Value
Type Description
ClientSecrets

ClientSecretsStream

public Stream ClientSecretsStream { get; set; }

Gets or sets the client secrets stream which contains the client identifier and its secret.

Property Value
Type Description
Stream
Remarks

The AuthorizationCodeFlow constructor is responsible for disposing the stream.

Clock

public IClock Clock { get; set; }

Gets or sets the clock. The clock is used to determine if the token has expired, if so we will try to refresh it. The default value is Default.

Property Value
Type Description
IClock

DataStore

public IDataStore DataStore { get; set; }

Gets or sets the data store used to store the token response.

Property Value
Type Description
IDataStore

DefaultExponentialBackOffPolicy

public ExponentialBackOffPolicy DefaultExponentialBackOffPolicy { get; set; }

Indicates which of exceptions and / or HTTP status codes are automatically retried using exponential backoff. The default value is RecommendedOrDefault which means retries will be executed as recommended by each service. For services that have no specific recommendations UnsuccessfulResponse503 will be used, which means HTTP Status code 503 will be retried with exponential backoff. If set to None no automatic retries will happen. Calling code may still specify custom retries by configuring HttpClient.

Property Value
Type Description
ExponentialBackOffPolicy

HttpClientFactory

public IHttpClientFactory HttpClientFactory { get; set; }

Gets or sets the factory for creating HttpClient instance.

Property Value
Type Description
IHttpClientFactory

Scopes

public IEnumerable<string> Scopes { get; set; }

Gets or sets the scopes which indicate the API access your application is requesting.

Property Value
Type Description
IEnumerablestring

TokenServerUrl

public string TokenServerUrl { get; }

Gets the token server URL.

Property Value
Type Description
string

Extension Method