IManagedIdentityApplication.AcquireTokenForManagedIdentity(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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
Remarks
You can also chain the following optional parameters: WithForceRefresh(Boolean)