我需要在我的主页上收到短时间线上的最后一条推文。 告诉我这是最简单的方法。
PS我使用Codeigniter,为它找到一个解决方案会很好^ _ ^ p>
非常感谢你早先的< / p> div>
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
我需要在我的主页上收到短时间线上的最后一条推文。 告诉我这是最简单的方法。
PS我使用Codeigniter,为它找到一个解决方案会很好^ _ ^ p>
非常感谢你早先的< / p> div>
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.
报告相同问题?