-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
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
Maybe not related to fandjango: user.oauth_token.extend() fails very often #56
Comments
Hi @Morpho, I haven't had the opportunity to run the latest version in production yet. Have you enabled the migration in your application's settings on Facebook? |
Yes everything is enabled. I am using the newest version of the Facebook API, so no more "offline access", new auth dialog, etc. Its just weird that it only fails sometimes, without any reason. I will look further into it and let you know here. Besides of that, your code is VERY stable and runs without any exceptions. I really love it! |
Thanks! If the issue persists, we might consider to catch and ignore the exception until Facebook sorts it out (presuming it's a bug on their side, which seems likely). |
And here's a stacktrace:
|
Thanks guys. I've made some configurations to ignore exceptions raised by
|
About 10% of the requests generated by user.oauth_token.extend() fail. I have no clue why exactly they fail. Facebook returns the following:
response = {u'error_code': 1, u'error_msg': u'An unknown error occurred'}
So in models.py line 256 an AttributeError exception is raised, because it cannot parse the response.
Do you guys have any clue why Facebook returns that error?
The text was updated successfully, but these errors were encountered: