ConfidentialClientApplication.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. This override enables you to specify a login hint and extra query parameter.

public Microsoft.Identity.Client.GetAuthorizationRequestUrlParameterBuilder GetAuthorizationRequestUrl (System.Collections.Generic.IEnumerable<string> scopes);
abstract member GetAuthorizationRequestUrl : seq<string> -> Microsoft.Identity.Client.GetAuthorizationRequestUrlParameterBuilder
override this.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 STS authorization endpoint parametrized with the parameters

Implements

Remarks

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

Applies to