Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Facebook Graph API: How to filter home & feed by application?

The Facebook Graph API lets you grab a JSON representation of home (News Feed) & feed (Wall).

How do I just get the posts made by my Facebook app?

like image 594
ma11hew28 Avatar asked Dec 09 '22 05:12

ma11hew28


1 Answers

Facebook has added support to filter me/home posts without using FQL by passing the filter parameter.

For example to get just photos you can do: me/home?filter=app_2305272732

Full documentation is here: http://developers.facebook.com/docs/reference/api/user/#home

like image 175
zachallia Avatar answered Mar 16 '23 04:03

zachallia