1
lizunlong OP 不知道为什么,现在又自动好了~ 问题解除。
|
2
Weakdancer 2010 年 8 月 5 日
我的也是,经常出现。
|
3
dofy 2010 年 8 月 5 日
可能是 API 请求次数超限了就没有 results 了吧
|
4
fineao 2010 年 8 月 5 日
我也出现了
貌似 GAE 的空间也不是想象中的那样稳定啊 |
5
greatghoul 2010 年 8 月 6 日
我也出现了同样的问题,不知道什么时候能出个更新。。。。
|
6
greatghoul 2010 年 8 月 7 日
注释掉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'] |