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've been trying to fetch the statuses from a list (public list), but I could not find any specific method in the twitter api documentation from this. The way to fetch tweets from a list, is described as going through the user (the creator of the list) and fetching the statuses then, something like http://api.twitter.com/version/:user/lists/:id/statuses.format

Is there no direct way to get the statuses from a public list...something like maybe http://api.twitter.com/version/:list_id/statuses.format or http://api.twitter.com/version/lists/:id/statuses.format

This might be a trivial question, but would certainly help eliminating the user dependency

share|improve this question

1 Answer

up vote 1 down vote accepted

Sorry, but a list is maintained by a user, and you must reference it in the context of the user that created the list, like so:

http://api.twitter.com/1/dotnetdevbuzz/lists/source-users/statuses.json?page=1

where dotnetdevbuzz is the user, and source-users is the list slug.

At least you don't have to be authenticated in order to get the most recent statuses from the list members.

share|improve this answer
thanks @arcain ...I had to go around the usual way only :| – hashpipe Feb 15 '11 at 13:42

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.