I'm trying to use the Zend twitter service in codeigniter.
I have used the following method to integrate zend http://www.beyondcoding.com/2008/02/21/using-zend-framework-with-codeigniter/
I can successfully complete the Oauth authentication and receive a valid access token from twitter, and my callback page works fine, but when I try to make a request I get the following error:
Message: Undefined offset: 0
Filename: Client/Result.php
Line Number: 232
I'm loading the twitter class like this:
$this->load->library('zend');
$this->zend->load('Zend/Service/Twitter');
I'm not sure if there's anything else I should be loading, or what I'm doing wrong.
I'm using Codeigniter 2.0.2 and ZendFramework 1.11.4
Any help would be very much appreciated.