Search twitter and obtain tweets by hashtag, maximizing number of returned search results

蓝咒 提交于 2019-12-05 08:34:34

This is not possible,

Using the Twitter Search API

"The Search API is not complete index of all Tweets, but instead an index of recent Tweets. At the moment that index includes between 6-9 days of Tweets."

Pinaki Brahma

This response is for those who are still searching for a similar problem... You can include an extra parameter 'resultType' and mention if you want 'popular' or 'recent' posts.

FIFA <- searchTwitter("#WorldCup", n=9999, since='2007-10-30', resultType = 'recent')

This should do the trick.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!