IConfidentialClientApplication.GetAuthorizationRequestUrl Method

Definition

Computes the URL of the authorization request letting the user sign-in and consent to the application accessing specific scopes in the user's name. The URL targets the /authorize endpoint of the authority configured in the application.

public Microsoft.Identity.Client.GetAuthorizationRequestUrlParameterBuilder GetAuthorizationRequestUrl (System.Collections.Generic.IEnumerable<string> scopes);
abstract member GetAuthorizationRequestUrl : seq<string> -> Microsoft.Identity.Client.GetAuthorizationRequestUrlParameterBuilder
Public Function GetAuthorizationRequestUrl (scopes As IEnumerable(Of String)) As GetAuthorizationRequestUrlParameterBuilder

Parameters

scopes
IEnumerable<String>

Scopes requested to access a protected API.

Returns

A builder enabling you to add optional parameters before executing the token request to get the URL of the authorization endpoint with the specified parameters.

Remarks

You can also chain the following optional parameters: WithRedirectUri(String)WithLoginHint(String)WithExtraQueryParameters(Dictionary<String,String>)WithExtraScopesToConsent(IEnumerable<String>)

Applies to