Condividi tramite


InteractiveBrowserCredential.GetToken Method

Definition

Overloads

GetToken(PopTokenRequestContext, CancellationToken)

Silently obtains an AccessToken for a user account if the user has already authenticated. Otherwise, the default browser is launched to authenticate the user. Acquired tokens are cached by the credential instance. Token lifetime and refreshing is handled automatically. Where possible, reuse credential instances to optimize cache effectiveness.

GetToken(TokenRequestContext, CancellationToken)

Silently obtains an AccessToken for a user account if the user has already authenticated. Otherwise, the default browser is launched to authenticate the user. Acquired tokens are cached by the credential instance. Token lifetime and refreshing is handled automatically. Where possible, reuse credential instances to optimize cache effectiveness.

GetToken(PopTokenRequestContext, CancellationToken)

Source:
InteractiveBrowserCredential.cs

Silently obtains an AccessToken for a user account if the user has already authenticated. Otherwise, the default browser is launched to authenticate the user. Acquired tokens are cached by the credential instance. Token lifetime and refreshing is handled automatically. Where possible, reuse credential instances to optimize cache effectiveness.

public Azure.Core.AccessToken GetToken (Azure.Core.PopTokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default);
override this.GetToken : Azure.Core.PopTokenRequestContext * System.Threading.CancellationToken -> Azure.Core.AccessToken
Public Function GetToken (requestContext As PopTokenRequestContext, Optional cancellationToken As CancellationToken = Nothing) As AccessToken

Parameters

requestContext
PopTokenRequestContext

The details of the authentication request.

cancellationToken
CancellationToken

A CancellationToken controlling the request lifetime.

Returns

An AccessToken which can be used to authenticate service client calls.

Implements

Exceptions

Thrown when the authentication failed.

Applies to

GetToken(TokenRequestContext, CancellationToken)

Source:
InteractiveBrowserCredential.cs
Source:
InteractiveBrowserCredential.cs

Silently obtains an AccessToken for a user account if the user has already authenticated. Otherwise, the default browser is launched to authenticate the user. Acquired tokens are cached by the credential instance. Token lifetime and refreshing is handled automatically. Where possible, reuse credential instances to optimize cache effectiveness.

public override Azure.Core.AccessToken GetToken (Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default);
override this.GetToken : Azure.Core.TokenRequestContext * System.Threading.CancellationToken -> Azure.Core.AccessToken
Public Overrides Function GetToken (requestContext As TokenRequestContext, Optional cancellationToken As CancellationToken = Nothing) As AccessToken

Parameters

requestContext
TokenRequestContext

The details of the authentication request.

cancellationToken
CancellationToken

A CancellationToken controlling the request lifetime.

Returns

An AccessToken which can be used to authenticate service client calls.

Exceptions

Thrown when the authentication failed.

Applies to