You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Usage of the /common endpoint is not supported for such applications created after '10/15/2018'. Use a tenant-specific endpoint or configure the application to be multi-tenant.
#16
Open
vkpalani82 opened this issue
May 6, 2019
· 1 comment
I am in the same situation having followed all the guidance provided.
// Startup.Auth.cspublicvoidConfigureAuth(IAppBuilderapp){vartvps=newTokenValidationParameters{ValidAudience=ConfigurationManager.AppSettings["ida:Audience"],// Changed from falseValidateIssuer=true,// Field added with Tenant ID for issuer ValidIssuer="https://sts.windows.net/{ My Single Tenant ID }/"};app.UseOAuthBearerAuthentication(newOAuthBearerAuthenticationOptions{AccessTokenFormat=newJwtFormat(tvps,newOpenIdConnectCachingSecurityTokenProvider("https://login.microsoftonline.com/{
My Single Tenent ID }/v2.0/.well-known/openid-configuration")),});}
// Web.config<appSettings><add key="ida:Tenant"value="{ My Tenant ID }"/><add key="ida:Audience"value="{ App registration ID }"/></appSettings>
i am getting below error after setting up all the steps . Please let me know anything i am missing ?
The text was updated successfully, but these errors were encountered: