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.

The Graph API of Facebook's home:

Request:

https://graph.facebook.com/me/home?access_token=.....

JSON response:

{
   "data":[
      {
         "type":"status",
         "id":"100003063094116_114168602028576",
         "created_time":"2011-11-07T16:28:44+0000"
      },
      {
         "type":"link",
         "id":"100003063094116_114172085361561",
         "created_time":"2011-11-07T16:27:44+0000"
      }
   ],
   "paging":{
      "previous":"https://graph.facebook.com/me/home?fields=type&limit=2&access_token=....&since=1320683324",
      "next":"https://graph.facebook.com/me/home?fields=type&limit=2&access_token=....&until=1320683263"
   }
}

How can I can filter the news feed of "type"="status"?

share|improve this question

1 Answer

You may try FQL query instead:

SELECT status_id, time, source, message FROM status WHERE uid = me()

me() may be replaced by any other facebook user ID

and may be tested here

share|improve this answer
Hello rudolf ,How can i used the FQL ? – 丁华峰 Nov 9 '11 at 7:23
The request url is : graph.facebook.com/fql?q=SELECT status_id, time, source, message FROM status where uid = me() , but the "graph.facebook.com/me/home"; Corresponding FQL is ??? – 丁华峰 Nov 9 '11 at 7:36
Could you specifify how exactly do you call request to graph.facebook.com/me/home?access_token=.....? – rudolf_franek Nov 9 '11 at 8:48

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.