I am using the Facebook Graph API and I was wondering if there was anyway to get a list of all the users and their current status in one call?
I basically want the s
Thanks to @mgilson for his answer, this can be combined to one FQL statement like this:
SELECT status_id,uid,message FROM status WHERE uid IN (SELECT uid FROM user WHERE uid IN(SELECT uid2 FROM friend WHERE uid1=me()))
The magic I found is requesting the friends_status permission which will open up from Public posts to Friends and others which help replicate the feeling of the wall.