You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm running python-twitter 0.8.5 on the raspberry pi. I didn't have this error
before but it seems to have just happened now without any changes to the script.
This is the error which I get.
File "twitter_interface.py", line 19, in <module>
morsetweets = api.GetMentions()
File "/usr/local/lib/python2.7/dist-packages/python_twitter-0.8.5-py2.7.egg/twitter.py", line 3475, in GetMentions
data = self._ParseAndCheckTwitter(json)
File "/usr/local/lib/python2.7/dist-packages/python_twitter-0.8.5-py2.7.egg/twitter.py", line 3875, in _ParseAndCheckTwitter
raise TwitterError("json decoding")
twitter.TwitterError: json decoding
Thanks in advance!
Original issue reported on code.google.com by [email protected] on 5 Mar 2013 at 5:33
The text was updated successfully, but these errors were encountered:
anytime you get a "json decoding" error with an api call that was working it
means one of two things:
1) Twitter's API is borked (which an hour ago it was for v1.0 calls)
2) Your oauth keys are either now dead or broken
both of these can be checked by adding debugHTTP=True to your API call - then
you will see the raw http response as Twitter seems to enjoy sending html for
some errors when responding.
Original issue reported on code.google.com by
[email protected]
on 5 Mar 2013 at 5:33The text was updated successfully, but these errors were encountered: