Re: [twitter-dev] Re: Getting Followers (OAuth) and Cursor Parameter.

2009-12-11 Thread Mark McBride
Are the cursors getting formatted in scientific notation? They shouldn't be... they need to be formatted exactly as they appear in the XML/JSON. On Fri, Dec 11, 2009 at 9:35 AM, t.arnf...@googlemail.com wrote: > It doesnt work?? > > $array = array(); > $con = $connection->get('statuses/follower

[twitter-dev] Re: Getting Followers (OAuth) and Cursor Parameter.

2009-12-11 Thread t.arnf...@googlemail.com
It doesnt work?? get('statuses/followers', array("cursor"=> $lastTweetToStartAt)); foreach($con->users as $follower){ $array[] = $follower->screen_name; } print_r($array); echo(""); $lastTweetToStartAt = $con->next_cursor; $con = $connection->get('statuses/followers', array("cursor"=> $las

[twitter-dev] Re: Getting Followers (OAuth) and Cursor Parameter.

2009-12-11 Thread t.arnf...@googlemail.com
So i pass back eg: 1.876534678594E+18 or do i pass back -1.876534678594E+18 ? On Dec 10, 5:37 pm, Mark McBride wrote: > This is indeed the way you do it. > > On Thu, Dec 10, 2009 at 8:49 AM, t.arnf...@googlemail.com > > > > > > wrote: > > Hi, > > I understand when using the Twitter OAuth API