1
lizunlong OP 不知道为什么,现在又自动好了~ 问题解除。
|
2
Weakdancer 2010-08-05 17:46:50 +08:00
我的也是,经常出现。
|
3
dofy 2010-08-05 17:48:15 +08:00
可能是 API 请求次数超限了就没有 results 了吧
|
4
fineao 2010-08-05 21:01:44 +08:00
我也出现了
貌似 GAE 的空间也不是想象中的那样稳定啊 |
5
greatghoul 2010-08-06 18:39:37 +08:00
我也出现了同样的问题,不知道什么时候能出个更新。。。。
|
6
greatghoul 2010-08-07 16:15:23 +08:00
注释掉writer.py中以下代码,暂可解决问题, 大约201行开始
# mentions_twitter = memcache.get('mentions_twitter') # if mentions_twitter is None: # try: # result = urlfetch.fetch(TWITTER_API_ROOT + 'search.json?q=' + urllib.quote(q)) # if result.status_code == 200: # mentions_twitter = simplejson.loads(result.content) # memcache.add('mentions_twitter', mentions_twitter, 3600) # except: # mentions_twitter = None # if mentions_twitter is not None: # if len(mentions_twitter['results']) > 0: # template_values['mentions_twitter'] = mentions_twitter['results'] |