Hi,
            I have changed my logic to fetch 100 users at a time using
statuses/friends call. And passing cursor parameter everytime after
one call recursively. But this process is becoming very slow and it is
taking very long time to fetch the records & getting terminated
suddenly. What you people suggest in order to export the data with
lesser number of calls & speedily even though user is having more
number of friends?

On Dec 2, 9:22 pm, Taylor Singletary <taylorsinglet...@twitter.com>
wrote:
> Hi computerzworld,
>
> You probably don't need whitelisting and should rethink your implementation
> instead. Using multiple accounts is not the right answer to get around rate
> limits, unless those accounts represent users engaged in your service and
> you are acting directly on their behalf.
>
> The quickest path to outputting a list of friends and followers to a CSV
> file is using the friends/ids and followers/ids API methods. For most users,
> each of these methods will require a single request. You then pipeline those
> results into users/lookup, which allows you to get the equivalent of
> users/show for up to 100 user ids at a time.
>
> With this pipeline, you can certainly provide CSVs of followers and
> followings for the majority of your users within 350 requests. If it would
> take more than 350 requests it's a very exceptional situation. The answer to
> that situation is not whitelisting. It's recognizing that some of your users
> will take longer to process than others. They might not get their CSV within
> an hour.
>
> Thanks,
> Taylor
>
> On Thu, Dec 2, 2010 at 7:26 AM, Igor Kharin <igorkha...@gmail.com> wrote:
> > Well, I'm pretty sure you can use multiple accounts. So that when user
> > account limits gets exhausted you can switch to you app's one and
> > fetch the rest.
>
> > On Thu, Dec 2, 2010 at 8:57 PM, computerzworld <meat2...@gmail.com> wrote:
> > > Hi,
> > >                    Thanks for your response. I have made a request
> > > before a week but its still not get approved. Is Twitter ignoring all
> > > requests? Or any other way can I make this work?
>
> > > Thanks.
>
> > > On Dec 2, 6:31 pm, Igor Kharin <igorkha...@gmail.com> wrote:
> > >> Hello. You may try to get your app whitelisted to bump up the limits:
> >http://dev.twitter.com/pages/rate-limiting#whitelisting
>
> > >> On Thu, Dec 2, 2010 at 6:57 PM, computerzworld <meat2...@gmail.com>
> > wrote:
> > >> > Hello,
> > >> >           I am implementing an application which will download users'
> > >> > friends & followers as csv so that they can have backup of their data
> > >> > but when I am making the API call, users API call limit is getting to
> > >> > zero as that user is having more than 100 friends and followers and
> > >> > limit of 350 is getting over in one shot. I am making two API calls at
> > >> > a time. One is friends/ids for retrieving friends' ids and form that I
> > >> > am fetching users details via users/show. Is there any other way in
> > >> > which I can be able to retrieve the list using streaming API or
> > >> > something else or increasing my limit? Also users/show function is
> > >> > retrieving data very much slow. I am getting stuck at this point.
> > >> > Please help me. Thank you.
>
> > >> > --
> > >> > Twitter developer documentation and resources:
> >http://dev.twitter.com/doc
> > >> > API updates via Twitter:http://twitter.com/twitterapi
> > >> > Issues/Enhancements Tracker:
> >http://code.google.com/p/twitter-api/issues/list
> > >> > Change your membership to this group:
> >http://groups.google.com/group/twitter-development-talk
>
> > > --
> > > Twitter developer documentation and resources:
> >http://dev.twitter.com/doc
> > > API updates via Twitter:http://twitter.com/twitterapi
> > > Issues/Enhancements Tracker:
> >http://code.google.com/p/twitter-api/issues/list
> > > Change your membership to this group:
> >http://groups.google.com/group/twitter-development-talk
>
> > --
> > Twitter developer documentation and resources:http://dev.twitter.com/doc
> > API updates via Twitter:http://twitter.com/twitterapi
> > Issues/Enhancements Tracker:
> >http://code.google.com/p/twitter-api/issues/list
> > Change your membership to this group:
> >http://groups.google.com/group/twitter-development-talk

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk

Reply via email to