Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用了推特 api。我想为我的应用程序获取包含特定单词的推文。就像如果用户键入“iphone”,那么所有包含该关键字的推文都应该从 twitter 中获取。我该怎么做 ?我应该使用流 api 还是 REST api?请帮忙。询问的主要原因是 REST 只提供前 1500 条推文,但我需要更多。流媒体提供实时推文。所以我不知道该使用哪一个。或者有没有办法使用 REST 获得超过 1500 条推文?
Twitter API 支持通过查询/search/tweets端点进行搜索。
/search/tweets
参考文档
如果您担心遇到 API 限制,请通过 JSONP 进行调用,将调用卸载到您的客户端。