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
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
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.