Reputation: 171
Today when I request for a code of AAD app in OAuth flow, the server returns:
error:server_error
error_description:AADSTS50000: There was an error issuing a token or an issue with our sign-in service. Trace ID: c81bb57b-7f96-4f96-9003-13c54b9aa700 Correlation ID: 4303257a-9f95-4298-b8e8-8ea72c696557 Timestamp: 2019-12-17 07:19:35Z
error_uri:https://login.microsoftonline.com/error?code=50000
However afer I remove the prompt=admin_consent
from my request query, it works.
This is my original query:
https://login.microsoftonline.com/common/oauth2/authorize?
client_id=xxxxxx-xxxxxx-xxxxxx&
prompt=admin_consent&
scope=openid&
response_type=code&
nonce=xxx-xxx-xxx-xxx&
redirect_uri=https://my.php&
resource=https://graph.windows.net
More information:
Rest of my AAD apps work fine if I do not request for admin_consent
This query was broken today, I still use this since last week.
2019 / 12 / 18
update more infromation
Now I found that this fail might happen in different browsers and OS
this is my statistics
More information about this,
After I remove the SharePoint application permissions of my app, it can successfully login without error AADSTS50000
2019 / 12 / 24 Updated
Received from MS support
“Acknowledging that there seems to be a bug/regression here. Hit count is low, and unfortunately our telemetry does not contain enough information to pinpoint the problem.
Given low hit count and the need to add debugging telemetry, this issue likely will not be resolved till late Jan/early Feb.”
Thank you for help.
Upvotes: 3
Views: 1891
Reputation: 171
After mail communication with MS support for a week, this problem is comfirmed and fixed by Microsoft
Brief description of the content from the mail:
Upvotes: 0
Reputation: 15609
According to the official document, you can raise a support ticket on Azure portal by following this link.
Upvotes: 1