Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get followers and following from twitter account in iOS [closed]

Everybody..

How can I get all followers and following from a user's logged in twitter account in iOS? Is there any api for that?

please help me..

like image 929
Solid Soft Avatar asked Jul 26 '11 18:07

Solid Soft


1 Answers

Yes there is an API for that. see this.

I recommend using the JSON API as it is very easy to parse with the objective-c framework. Look at the fourth section on the page I linked to, under 'Friends and Followers' and you'll see there are requests you can make to access followers and following.

For example, this is how you get someone's followers:

http://api.twitter.com/1/followers/ids.json?id=myuser

This returns a JSON array of user IDs which you can use in conjunction with other APIs to get their user info.

Hope this helps you getting started

like image 129
Alex Coplan Avatar answered Sep 30 '22 13:09

Alex Coplan