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
I'm using python 3.4, django 1.9.4. I check #592 and Facebook returns access token by json format, since Facebook v2.3.
However FacebookOAuth2 process_refresh_token_response still returns parse_qs so it returns empty resutls.
process_refresh_token_response
parse_qs
Instead of FacebookOAuth2 process_refresh_token_response(self, response, *args, **kwargs), it's parents(BaseOAuth2)'s code works.
process_refresh_token_response(self, response, *args, **kwargs)
def process_refresh_token_response(self, response, *args, **kwargs): return response.json()
The text was updated successfully, but these errors were encountered:
Fixed by python-social-auth/social-core@dd9897c
Sorry, something went wrong.
No branches or pull requests
I'm using python 3.4, django 1.9.4.
I check #592 and Facebook returns access token by json format, since Facebook v2.3.
However FacebookOAuth2
process_refresh_token_response
still returnsparse_qs
so it returns empty resutls.Instead of FacebookOAuth2
process_refresh_token_response(self, response, *args, **kwargs)
, it's parents(BaseOAuth2)'s code works.The text was updated successfully, but these errors were encountered: