3

我正在使用来自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

它还可以正常查找推文。

有任何想法吗?

4

1 回答 1

6

这都是关于 twitter api 搜索限制的。引用自文档

您无法使用搜索 API 查找大约一周前的推文

例如,尝试运行

print t.search.tweets(q='hello', count=3, until='2013-03-01')

你会看到结果。

另外,看看这个答案

于 2013-03-04T10:57:13.843 回答