We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
The current OAuth2 token refresh implementation has several limitations:
tokenUrl
# Before token_url = auth_scheme.openIdConnect.tokenUrl or auth_scheme.oauth2.tokenUrl # After token_url = (auth_scheme.openIdConnect.get("tokenUrl") if auth_scheme.openIdConnect else None) or auth_scheme.oauth2.tokenUrl
The text was updated successfully, but these errors were encountered:
Opened the PR for this change
Sorry, something went wrong.
@hangfei would love to get your feedback on this thanks!
seanzhou1023
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
Problem
The current OAuth2 token refresh implementation has several limitations:
tokenUrl
is accessed as an object property instead of a dictionary keyProposed Changes
Implementation Updates
Test Improvements
The text was updated successfully, but these errors were encountered: