如何每 30 秒显示/更新指定主题标签的推文
我有一个 php 网页,用户可以在其中选择 Twitter 主题标签。
然后,我想使用 Twitter API 显示该主题标签的最新推文,并每 30 秒更新一次。
对此的任何支持都会很棒。 谢谢
I have a php webpage where the user selects a Twitter hashtag.
Using the Twitter API I'd like to then display the most current tweet for that hashtag and update this every 30 seconds.
Any support on this would be great.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我将使用 搜索 API,一个示例网址,使用
json< 编码的内容/code>:
http://search.twitter.com/search。 json?q=%23TAG&rpp=1
将 TAG 替换为您的标签,%23 = #. rpp=1 表示仅返回一条推文 (results_per_page)。
现在使用
json_decode();
和一些代码,您可以输出最新的推文。对于刷新,请使用 Javascript 或每 30 秒将页面重定向到自身。I would use the search API, a sample url, content encoded with
json
:http://search.twitter.com/search.json?q=%23TAG&rpp=1
Replace TAG with your Tag, %23 = #. rpp=1 means return only one tweet (results_per_page).
Now with
json_decode();
and a bit of code you can output the newest Tweet. For the refresh use Javascript or redirect the page to itself every 30 second..我建议您使用 Ajax 请求,因为这将为用户带来更好的体验。对于定时操作,许多 Ajax 框架中都有方法。例如,在原型中,您可以使用 http://www.prototypejs.org/api/timedObserver
用纯 PHP 实现这一点的唯一方法是每 30 秒刷新一次站点(通过重定向到其自身),这会给用户带来不好的感觉。
I recommend you to use an Ajax Request for that because that will be a better experience to the user. For timed operations there are methods in many Ajax Frameworks. For Example in Prototype you could use http://www.prototypejs.org/api/timedObserver
The only way you can do it in plain PHP is refreshing the site (by redirecting to itsself) every 30 seconds which does not have a good feel to the user.