We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Azure Active Directory Graph API (graph.windows.net) has been deprecated. https://techcommunity.microsoft.com/t5/azure-active-directory-identity/update-your-applications-to-use-microsoft-authentication-library/ba-p/1257363
Solution... Correct aadGraphResourceId and aadGraphEndpoint. public readonly string aadGraphResourceId = "https://graph.microsoft.com/"; public readonly string aadGraphEndpoint = "https://graph.microsoft.com/V1.0/";
Remove aadGraphVersion and single references in code. public readonly string aadGraphVersion = "api-version=1.6";
string url = $"{this.aadGraphEndpoint}{this.Tenant}{api}";
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Azure Active Directory Graph API (graph.windows.net) has been deprecated.
https://techcommunity.microsoft.com/t5/azure-active-directory-identity/update-your-applications-to-use-microsoft-authentication-library/ba-p/1257363
Solution...
Correct aadGraphResourceId and aadGraphEndpoint.
public readonly string aadGraphResourceId = "https://graph.microsoft.com/";
public readonly string aadGraphEndpoint = "https://graph.microsoft.com/V1.0/";
Remove aadGraphVersion and single references in code.
public readonly string aadGraphVersion = "api-version=1.6";
The text was updated successfully, but these errors were encountered: