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 can get news feeds using

http://graph.facebook.com/me/home

in addition to get the id of the user who post a status or photo,e.g.

from = { id = 100004146969087; name = "Tim"; };, I want to get the fullName and profile_img_url of that person. I have to send a request like /me?fields=picture, username, name to get the info. How can I get the fullName and profile_img_url of users in my news feed by one request?

share|improve this question

2 Answers

up vote 2 down vote accepted

I think this is what you are looking for:

http://graph.facebook.com/me/home?fields=from.fields(name,username,picture.type(large))
share|improve this answer

may be you can use multiply query. JSON-format query, you can find document in facebook developer document.

share|improve this answer

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.