ManagedIdentityApplication.AcquireTokenForManagedIdentity(String) Method

Definition

Acquires token for a managed identity configured on Azure resource. See https://aka.ms/msal-net-managed-identity.

public Microsoft.Identity.Client.AcquireTokenForManagedIdentityParameterBuilder AcquireTokenForManagedIdentity (string resource);
abstract member AcquireTokenForManagedIdentity : string -> Microsoft.Identity.Client.AcquireTokenForManagedIdentityParameterBuilder
override this.AcquireTokenForManagedIdentity : string -> Microsoft.Identity.Client.AcquireTokenForManagedIdentityParameterBuilder
Public Function AcquireTokenForManagedIdentity (resource As String) As AcquireTokenForManagedIdentityParameterBuilder

Parameters

resource
String

resource requested to access the protected API. For this flow (managed identity), the resource should be of the form "{ResourceIdUri}" or {ResourceIdUri/.default} for instance https://management.azure.net or, for Microsoft Graph, https://graph.microsoft.com/.default.

Returns

A builder enabling you to add optional parameters before executing the token request

Implements

Applies to