Reputation: 6711
I am developing an IPhone app. The user can post to his wall and now I want to read ONLY the news feeds that was posted from the IPHone app. When I use
https://graph.facebook.com/me/feed?access_token=...
I get all wall posts, and I can recognize the one posted from the iphone app by the "application" node in the JSON response. How can I filter those feeds? Should I use FQL instead? Thanks!!!
Edit: I tried using https://graph.facebook.com/search?q={My application name}&type=post&access_token=
with no success...
Upvotes: 0
Views: 414
Reputation: 13259
Yep, FQL is the way forward, you can pass an app_id
: http://developers.facebook.com/docs/reference/fql/stream/
So your query could be like: SELECT post_id, actor_id, target_id, message FROM stream WHERE source_id = me() AND app_id = 'my_app_id'
Upvotes: 1