I am using Elliot's Twitter API for CodeIgniter. i downloaded the latest patch from https://github.com/vixnet/codeigniter-twitter . all seems to work fine. only when i want to get the status of a user it shows error.
For example:
$statuses_list = $this->tweet->call('get', 'statuses/user_timeline'); WORKS FINE!
but
$statuses_list = $this->tweet->call('get', 'statuses/user_timeline', array( 'include_entities' => 'true', 'count' => '2'));
Show error as:
A PHP Error was encountered
Severity: Notice
Message: Trying to get property of non-object
Filename: libraries/tweet.php
Line Number: 208
Can anyone help please?