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 OAuthClient.request, the withhold_token arg appears to be internal, but it is passed on as a param in the request.
OAuthClient.request
withhold_token
authlib/authlib/client/client.py
Lines 164 to 165 in 15b09cf
Should this be popped?
if kwargs.pop('withhold_token', False): return session.request(method, url, **kwargs)
The text was updated successfully, but these errors were encountered:
My mistake, I thought this was going directly to request.Session, but it's going to OAuth2Session(request.Session).
request.Session
OAuth2Session(request.Session)
Sorry, something went wrong.
No branches or pull requests
In
OAuthClient.request
, thewithhold_token
arg appears to be internal, but it is passed on as a param in the request.authlib/authlib/client/client.py
Lines 164 to 165 in 15b09cf
Should this be popped?
The text was updated successfully, but these errors were encountered: