如何使用 php 获取某个用户的最后 10 条推文?

发布于 2024-11-02 16:57:14 字数 99 浏览 2 评论 0原文

我只需要在我的主页上短暂接收我最后的几条推文。告诉我最简单的方法。
PS 我使用 Codeigniter,如果能找到解决方案就好了 ^_^

非常感谢您之前的介绍

I need to receive just few my last tweets for short timeline on my homepage. Tell me the easiest way to do this.
PS I use Codeigniter and it would be nice to get a solution for it ^_^

Thank you so much for the earlier

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

泪眸﹌ 2024-11-09 16:57:14

手册中的 Zend_Service_Twitter 示例:

$twitter = new Zend_Service_Twitter(array(
    'username' => 'johndoe',
    'accessToken' => $token,
    'count' => 10,
));
$response   = $twitter->status->userTimeline();

您可以使用它代码点火器。

Zend_Service_Twitter example from the manual:

$twitter = new Zend_Service_Twitter(array(
    'username' => 'johndoe',
    'accessToken' => $token,
    'count' => 10,
));
$response   = $twitter->status->userTimeline();

You can use it just fine with codeignitor.

咿呀咿呀哟 2024-11-09 16:57:14

今天早上我刚刚在研究同样的事情。从 Greg Aker 找到了这个有用的花絮 http://www.gregaker.net/2011/feb /12/codeigniter_reactors_caching_drivers/ 它加载最新的 X 条推文并使用缓存。还有更多查询参数可以发送到 Twitter API。您可以在 http://apiwiki.twitter.com/w 查看它们/page/22554679/Twitter-API-文档

I was just looking into this same thing this morning. Found this helpful tidbit from Greg Aker http://www.gregaker.net/2011/feb/12/codeigniter_reactors_caching_drivers/ It loads in the latest X number of tweets as well as uses caching. There is a bunch more query params that can be sent t the Twitter API. You can see them all at http://apiwiki.twitter.com/w/page/22554679/Twitter-API-Documentation

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文