[twitter-dev] Re: statuses/friends issue?

2009-12-10 Thread jimmy fa
usuariosTemporal = twitter.getFollowersStatuses(); for (Object usuario : usuariosTemporal) { usuarios.add((User) usuario); } do { usuariosTemporal = twitter.getFollowersStatuses (usuariosTemporal.getNextCursor());

[twitter-dev] Re: statuses/friends issue?

2009-12-09 Thread Yusuke
Hi Hansamann, The latest snapshot build supports cursor based pagination. Please give it a try ;) http://groups.google.com/group/twitter-development-talk/browse_thread/thread/ff56b7dcc0a0cf07 On 12月9日, 午前11:03, hansamann sven.hai...@googlemail.com wrote: Thanx, I think the issue exists because I

Re: [twitter-dev] Re: statuses/friends issue?

2009-12-08 Thread Abraham Williams
Are they same users being returned in the results? Can you check for duplicates and exit the loop as a temporary solution? You should open a bug ticket: http://code.google.com/p/twitter-api/issues/entry Abraham On Mon, Dec 7, 2009 at 12:46, hansamann sven.hai...@googlemail.com wrote: I am

[twitter-dev] Re: statuses/friends issue?

2009-12-08 Thread Randy
Are you using page parameter? If so, it was recently deprecated, so that would explain what you are seeing... the first page over and over again. Check the API documentation to see how to use the cursor parameter. On Dec 6, 8:25 pm, hansamann sven.hai...@googlemail.com wrote: Hi all, my code

[twitter-dev] Re: statuses/friends issue?

2009-12-08 Thread hansamann
Thanx, I think the issue exists because I am using the page parameter (via twitter4j). @twitter does deprecating also mean it stops working? :-) Cheers Sven On Dec 8, 1:06 pm, Randy randy.posyn...@gmail.com wrote: Are you using page parameter? If so, it was recently deprecated, so that would

Re: [twitter-dev] Re: statuses/friends issue?

2009-12-08 Thread Raffi Krikorian
@twitter does deprecating also mean it stops working? :-) yes. sorry. for us, it does. -- Raffi Krikorian Twitter Platform Team http://twitter.com/raffi

[twitter-dev] Re: statuses/friends issue?

2009-12-07 Thread hansamann
I am still seeing this issue. I am pasting some groovy code below, you can run thus straight in groovyConsole with your own user/pass: --- import twitter4j.* import twitter4j.http.* start() @Grab(group='net.homeip.yusuke', module='twitter4j', version='[2.0.10,)') def start() { def users =