我正在尝试为WOEID 23424911
(尼泊尔)生成热门话题。它生成以下消息
TwitterError: [{u'message': u'Sorry, that page does not exist.', u'code': 34}]
使用的代码:
import twitter
consumer_key=.....
consumer_secret=......
access_token=.......
access_token_secret=.....
api = twitter.Api(consumer_key, consumer_secret,access_token, access_token_secret)
print api.GetTrendsWoeid(woeid=23424911, exclude=None)
然而,有趣的是WOEID 23424848
(印度),主题是生成的主题。
WOEID 可以从
https://query.yahooapis.com/v1/public/yql?q=select+*+from+geo.places+where+text+=+%27Nepal%27
有什么想法为什么我会收到这个错误?