Reputation: 257
Currently, I developing Microsoft ChatBot that needs login via Microsoft Graph.
After I log in the error display as below.
Upvotes: 0
Views: 175
Reputation: 14336
When you registered your app, you chose one of three supported account types:
If you chose the first option, your app is not considered "multi-tenant", and you cannot use the "common" endpoint, as the error message indicates. You have two options here:
https://login.microsoftonline.com/{tenant-id}/...
, instead of https://login.microsoftonline.com/common/...
).Upvotes: 3