I am receiving the following error when trying to authenticate to twitter using Zend_Service_Twitter:
Notice: Undefined offset: 0 in \library\Zend\Rest\Client\Result.php on line
232
I am using the Zend Framework 1.10.
The following is the code snippet:
try
{
$this->twitter = new Zend_Service_Twitter( 'notbaggage',
'################' );
}
catch(Exception $e)
{
echo "<h6>" . $e . "</h6>";
}
Any help is appreciated
Jack
