Twitter计数参数

时间:2012-12-29 21:24:16

标签: python twitter

我正在尝试编写一些代码,以便向Twitter发送搜索请求。

但是,返回似乎忽略了我放入URL的参数(实际的搜索查询除外)。

我正在使用的网址是:

http://search.twitter.com/search.json?q=obama&src=typd&count=4&tresult_type=popular

不管我输入的是什么,计数只会返回20,而且我相当受欢迎,但也没有被退回。

谁能看到我出错的地方?

由于

1 个答案:

答案 0 :(得分:1)

Twitter Search API中没有计数参数。查看他们的文档:Twitter API: search

您可以使用rpp(每页结果)在1.0 API中实现您想要的效果:

  

http://search.twitter.com/search.json?q=obama&rpp=4&tresult_type=popular

或使用新的1.1 API:

  

https://api.twitter.com/1.1/search/tweets.json?q=obama&count=4&tresult_type=popular