Peter,
If you are having the user log into your application then you can
retrieve their friend list using the users/friends method, then
iterate through this list and determine which of the 100 businesses
this user is following. That will also speed things up since you avoid
most of the 100 serial friendship/exists API queries used to generate
that page.

@dougw

On Feb 2, 9:55 pm, Peter Denton <[email protected]> wrote:
> Hello everyone,
> Can anyone share the best way to go about checking if twitters users are
> following other users in a semi-large qunities (100 at a time).
>
> My scenario is that I have a 3rd party app where people find businesses on
> twitter. I show businesses 100 at a time based on something like
> alphabetical listing or search result. Ideally, I would like to have it so
> that they can login, do a search like "twitter applications" and have the
> list show them if they are following each business or not.
>
> I am already using the freindship/exists method in the API, but curious if
> there was a way to do something like "does user_a follow user_b where user_b
> in (id1,id2,id3,id4). Or do I just have to run the query against the api one
> instance at a time?
>
> Thanks,
> Peter

Reply via email to