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
URL"
https://requests-oauthlib.readthedocs.io/en/latest/oauth2_workflow.html#backend-application-flow
theauth = HTTPBasicAuth(creds.ClientID,creds.ClientSecret) client = BackendApplicationClient(creds.ClientID) bcauth = OAuth2Session(client) token = bcauth.fetch_token(token_url=tokenendpoint,auth=theauth)
RESPONSE:
"Please supply either code or " "authorization_response parameters." ValueError: Please supply either code or authorization_response parameters.
NO idea what these mean or why they need to be set for just a Backend Client oAuth.
Putting in :
token = bcauth.fetch_token(token_url=tokenendpoint, client_id=creds.ClientID,client_secret=creds.ClientSecret)
Doesn't work either...
What is going with the documentation?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
URL"
https://requests-oauthlib.readthedocs.io/en/latest/oauth2_workflow.html#backend-application-flow
RESPONSE:
NO idea what these mean or why they need to be set for just a Backend Client oAuth.
Putting in :
token = bcauth.fetch_token(token_url=tokenendpoint, client_id=creds.ClientID,client_secret=creds.ClientSecret)
Doesn't work either...
What is going with the documentation?
The text was updated successfully, but these errors were encountered: