2
Answers

Token Authentication

I have query related to this token Authentication. I have code like
 
app.UseWindowsAzureActiveDirectoryBearerAuthentication( new WindowsAzureActiveDirectoryBearerAuthenticationOptions
{
Audience = ConfigurationManager.AppSettings["ida:Audience"], Tenant = ConfigurationManager.AppSettings["ida:Tenant"], });
 
My requirement is to stop validating any token other than "Bearer".
 
How can I achieve this.
 
I am using fiddler for tracking requests but for this token validation does it hit "login.microsoftonline.com"?
 
Answers (2)