我正在使用来自https://github.com/sixohsix/twitter的 Python Twitter 搜索 api
当我尝试使用“直到”参数搜索查询时,搜索不返回任何内容
from twitter import *
t = Twitter(auth=OAuth(....))
t.search.tweets(q = 'hello', count=3, until='2012-01-01')
{u'search_metadata': {u'count': 3, u'completed_in': 0.007, u'max_id_str': u'9223372036854775807', u'since_id_str': u'0', u'refresh_url': u'?since_id=9223372036854775807&q=hello%20until%3A2012-01-01&include_entities=1', u'since_id': 0, u'query': u'hello+until%3A2012-01-01', u'max_id': 9223372036854775807L}, u'statuses': []}
而当我没有“直到”搜索时,它会正常找到推文。当我在 twitter.com/search 上手动尝试搜索时
https://twitter.com/search?q=hello%20until%3A2012-01-01&src=typd
它还可以正常查找推文。
有任何想法吗?