Brendan Delumpa
Brendan Delumpa

Reputation: 1145

Issue with MSAL: Application [ClientID] is not supported for this API version

Trying to use MSAL to log into my Azure app, and I'm getting the following:

Additional technical information:
Correlation ID: 4a3f4692-a698-4e89-ba29-3146d9b92d7b
Timestamp: 2017-08-09 16:50:57Z
AADSTS70001: Application 'ClientID GUID' is not supported for this API version.

Can someone shed some light on this?

Upvotes: 1

Views: 1930

Answers (1)

Daniel Dobalian
Daniel Dobalian

Reputation: 3237

This error means that you've registered an Azure AD v1.0 application, but are hitting the Azure AD v2.0 converged endpoint.

Here's a nice explanation of the differences between the two, but in short v1 can sign in Azure AD users whereas the v2.0 converged endpoint can sign in Azure AD and Microsoft Account users. The v2.0 endpoint currently supports a subset of functionality, so depending on your scenario you may choose to stick with v1. The v2 limitations doc should help figure out if v2.0 is right for you.

v1.0

v2.0

Upvotes: 2

Related Questions