0

i have integrated twitter in my iphone App successfully and posted twits but in addition i need followers list with detail so how can i get my following and followers detail specially email id. there is any API available or not for Followers and Following i search but i m getting no idea ..Please let me know if any one have any idea.

Thanks...

Droid
  • 1,091
  • 2
  • 9
  • 14

1 Answers1

1

People following you(user)

https://dev.twitter.com/docs/api/1/get/followers/ids

example call : https://api.twitter.com/1/followers/ids.json?cursor=-1&screen_name=twitterapi

People you(user) are following

https://dev.twitter.com/docs/api/1/get/friends/ids

example call: https://api.twitter.com/1/friends/ids.json?cursor=-1&screen_name=twitterapi

. . . but you won't be able to get their email I.D's. This is private and privlaged information unavailable to to developers using the Twitter API.

Chamilyan
  • 9,347
  • 10
  • 38
  • 67