On 24-Jan-10, at 2:43 AM, Sam wrote:

// fetch your @mentions in json
$statuses = $twitter->getFriendsTimeline(array('count'=>50), 'rss');

Since most of those options would be Strings, I would think you need quotes around that 50:

$statuses = $twitter->getFriendsTimeline(array('count'=>'50'), 'rss');

-Jeff

Reply via email to