Hi,
I´m trying to use Azure AD as OAuth authorization provider. I have created an asp.net web application, just for testing, and registered an application in azure AD.
From the web site I created a web request to the authorize endpoint, the request sends fine, and I´m asked for credentials. After filling my user and password I always get this error:
An error occurred while processing your request.
HTTP Error Code: | 400 |
Message: | ACS50000: There was an error issuing a token. |
Inner Message: | ACS90027: Multiple principals match the 'ccf87be2-5370-4232-8453-0cadd770e3fe' identifier. |
Trace ID: | 0a79ca43-41c8-4e91-95ee-acb25cfd6053 |
Correlation ID: | e1396b28-868f-4e60-9a7d-9822f3b9d753 |
I think my request is ok, but I can't figure out what is happening, I´m sure there is only one application registered with that identifier. This is my request (I´m using get for testing purposes):
https://login.windows.net/[subscriptionid]/oauth2/authorize?resource=http://localhost&client_id=ccf87be2-5370-4232-8453-0cadd770e3fe&state=Windows%20Azure%20Active%20Directory&response_type=code&scope=http://localhostThanks!