ConfidentialClientApplicationBuilder.WithOidcAuthority(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.
Adds a known authority corresponding to a generic OpenIdConnect Identity Provider. MSAL will append ".well-known/openid-configuration" to the authority and retrieve the OIDC metadata from there, to figure out the endpoints. See https://openid.net/specs/openid-connect-core-1_0.html#Terminology
public Microsoft.Identity.Client.ConfidentialClientApplicationBuilder WithOidcAuthority (string authorityUri);
member this.WithOidcAuthority : string -> Microsoft.Identity.Client.ConfidentialClientApplicationBuilder
Public Function WithOidcAuthority (authorityUri As String) As ConfidentialClientApplicationBuilder
Parameters
- authorityUri
- String
Returns
Remarks
Do not use this method with Entra ID authorities (e.g. https://login.microsfoftonline.com/common). Use WithAuthority(string) instead.