PHP Twitter API - How to pull in multiple users tweets?(PHP Twitter API - 如何拉入多个用户的推文?)
问题描述
我将如何使用 PHP 从多个 twitter 用户中提取推文,并将它们作为一个组合列表的一部分显示在我的页面上?
How would I go about pulling in tweets from multiple twitter users with PHP and displaying them as part of one combined list on my page?
推荐答案
使用搜索 API 和布尔 OR 运算符.例如,这里是 CNN Breaking News 和 NPR All Things Considered 的 URL:
Use the search API and boolean OR operator. For example here is the URL for CNN Breaking News and NPR All Things Considered:
http://search.twitter.com/search.json?q=from%3acnnbrk+OR+from%3anpratc
查询是 URLEncoded 所以使用 Fiddler 工具 -> 文本编码/解码或你最喜欢的工具来查看纯文本的正确格式是:
The query is URLEncoded so use Fiddler Tools -> Text Encode/Decode or your favorite tool to see that the correct format in plain text is:
q=from:cnnbrk+OR+from:npratc
希望有所帮助.
这篇关于PHP Twitter API - 如何拉入多个用户的推文?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:PHP Twitter API - 如何拉入多个用户的推文?
- SoapClient 设置自定义 HTTP Header 2021-01-01
- PHP Count 布尔数组中真值的数量 2021-01-01
- Mod使用GET变量将子域重写为PHP 2021-01-01
- 如何定位 php.ini 文件 (xampp) 2022-01-01
- 正确分离 PHP 中的逻辑/样式 2021-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- 带有通配符的 Laravel 验证器 2021-01-01
- 从 PHP 中的输入表单获取日期 2022-01-01
- Laravel 仓库 2022-01-01
- 没有作曲家的 PSR4 自动加载 2022-01-01