Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Facebook has made this topic overly confusing. Just reading their documentation on the user object in the Graph API leaves you guessing: <a href="http://developers.facebook.com/docs/reference/api/user/">http://developers.facebook.com/docs/reference/api/user/</a></p> <p><strong>/user/feed</strong> The user's wall.</p> <p><strong>/user/home</strong> The user's news feed.</p> <p><strong>/user/statuses</strong> The user's status updates.</p> <p><em>Why they couldn't have the "wall" /user/wall and "news feed" /user/newsfeed "status updates" as /user/statusupdates to make is simple I will never know!</em></p> <p>So to get a list of status updates, do an HTTP Get to <code>http://graph.facebook.com/me/statuses?access_token=ValidUserAccessToken</code> for the current user.</p> <p>To get a list of wall stream items, do an HTTP Get to <code>http://graph.facebook.com/me/wall?access_token=ValidUserAccessToken</code> for the current user.</p> <p>To get a list of home feed stream items, do an HTTP Get to <code>http://graph.facebook.com/me/home?access_token=ValidUserAccessToken</code> for the current user.</p> <p>When you come across the "from" and you wonder who it's to, it's "to" the user who's access token you're using when calling <code>/me/....</code> or if your calling with a specific ID <code>/UserId/...</code> then it will be the user id for the "to".</p> <hr> <p>Another thought: Grab the complete object from the stream FQL table object (developers.facebook.com/docs/reference/fql/stream) and see if there's some information there that's not exposed via the Graph object.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload