-
-
Notifications
You must be signed in to change notification settings - Fork 426
Open
Description
I just worked through the Facebook authentication tutorial, and was stuck for quite some time until I started tracing the logs.
How to Reproduce
My problem was I registered a URI with trailing / (let it be https://example.org/) at facebook, but used the same URI without slash https://example.org in the python code.
r.text in oauth2_session.py contained a helpful error message:
{"error":{"message":"Error validating verification code. Please make sure your redirect_uri is identical to the one you used in the OAuth dialog request","type":"OAuthException","code":100}}
Expected Output
The error message is printed to the developer (eg., a reasonable exception is thrown).
Actual Output
Instead it was hidden from me, and I got a barely helpful and misleading traceback instead:
Traceback (most recent call last):
File "./test.py", line 30, in <module>
facebook.fetch_token(token_url, client_secret=client_secret, authorization_response=redirect_response)
File "/usr/local/lib/python2.7/dist-packages/requests_oauthlib/oauth2_session.py", line 199, in fetch_token
self._client.parse_request_body_response(r.text, scope=self.scope)
File "/usr/lib/python2.7/dist-packages/oauthlib/oauth2/rfc6749/clients/web_application.py", line 271, in parse_request_body_response
self.token = parse_token_response(body, scope=scope)
File "/usr/lib/python2.7/dist-packages/oauthlib/oauth2/rfc6749/parameters.py", line 303, in parse_token_response
validate_token_parameters(params, scope)
File "/usr/lib/python2.7/dist-packages/oauthlib/oauth2/rfc6749/parameters.py", line 313, in validate_token_parameters
raise MissingTokenError(description="Missing access token parameter.")
oauthlib.oauth2.rfc6749.errors.MissingTokenError
Metadata
Metadata
Assignees
Labels
No labels