0
api = twitter.Api(consumer_key='aaa',consumer_secret='aaa', access_token_key='aaa', access_token_secret='aaa')

followers=api.GetFollowerIDs()

该代码在 4 天前有效。但突然停止工作。它在下面给出错误。我正在使用 python-twitter。这是什么原因?

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/local/lib/python2.7/dist-packages/python_twitter-1.0.1-py2.7.egg/twitter.py", line 3320, in GetFollowerIDs
    total_count -= len(data['ids'])
TypeError: unsupported operand type(s) for -=: 'NoneType' and 'int'

编辑:所有代码都在上面。3-4 天前它是正确工作的代码。

EDIT2:如果你愿意,你可以从这里查看错误行。我正在使用那个库。https://github.com/bear/python-twitter/blob/master/twitter.py

4

1 回答 1

0

这里发生了什么:

a = None
a -= 5 
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: unsupported operand type(s) for -=: 'NoneType' and 'int'

由于某种原因,您的total_count变量设置为无

于 2013-07-26T19:15:39.620 回答