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
In the azure demo, it suggests using a legacy endpoint.
httr/demo/oauth2-azure.r
Lines 18 to 24 in df11e21
It needs to be updated to the below, as outlined in Microsoft guide https://learn.microsoft.com/en-us/entra/identity-platform/v2-oauth2-auth-code-flow
endpoint <- httr::oauth_endpoint( authorize = sprintf("https://login.windows.net/%s/oauth2/v2.0/authorize", tenant_id), # changed here by adding /v2.0/ access = sprintf("https://login.windows.net/%s/oauth2/v2.0/token", tenant_id))
In addition httr::oauth_endpoints("azure") gives "https://login.windows.net/common/oauth2/authorize", which is no longer supported since 2018 I believe.
httr::oauth_endpoints("azure")
I can confirm this change is required.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the azure demo, it suggests using a legacy endpoint.
httr/demo/oauth2-azure.r
Lines 18 to 24 in df11e21
It needs to be updated to the below, as outlined in Microsoft guide https://learn.microsoft.com/en-us/entra/identity-platform/v2-oauth2-auth-code-flow
In addition
httr::oauth_endpoints("azure")
gives "https://login.windows.net/common/oauth2/authorize", which is no longer supported since 2018 I believe.I can confirm this change is required.
The text was updated successfully, but these errors were encountered: