Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am building a demo Twitter app. I have fetched the search results and timeline tweets. Is there any way to get the list of people I am following and my followers? And, can my messages be fetched too?

share|improve this question
1  
You should accept some answers before making new questions... – Jacky Boy May 11 '12 at 12:02

1 Answer

up vote 0 down vote accepted

https://dev.twitter.com/docs/api/1/get/users/lookup

https://dev.twitter.com/docs/api/1/get/users/show

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

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

Check this links to know the parameters to get the list of followers and know the REST API link for retrieve the friends and followers.

share|improve this answer
And what about the format we get calling these functions. They do not seem to be a .jason. So how to work with them. Plz brief. Thanks. – Nihal Sharma May 11 '12 at 14:43
Ofcourse the response format will be in JSON only.. Check the Example request in that link. There will be a URL for that look like this " api.twitter.com/1/followers/… " with keyword in it as "json" – R.A May 11 '12 at 15:17
You need to parse the response JSON using JSON Framework – R.A May 11 '12 at 15:18
The friend query returns a list od IDs. How to get the information out of that id? – Nihal Sharma May 15 '12 at 8:58
After you get the list of ids,you need to send a request again to get the info about those users using this request dev.twitter.com/docs/api/1/get/users/lookup – R.A May 15 '12 at 11:15
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.