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 use the graph api to display all the feed of an app. Here is my simple code :

$url = $facebook->api('/' . $_REQUEST["app"] . '/feed?date_format=U&limit=10');
$feed = $url[data];
<pre><?php print_r($feed); ?></pre>

As you can see, it's very easy.

The pb : i want only the feed from the app and not from all the users who post comments. Apparently, that's depend of the configuration of the app, but i wonder if it exists a filter on the [from] parameter ?

Thks Vince

share|improve this question

1 Answer

Your best bet is to use FQL Query on the /fql endpoint.

You'll use a query on the stream table and a subquery on the stream_filter table. Documentation on stream and stream_filter

share|improve this answer
I don't that method, i will have a look. No way to filter it through the API ? – Vincent Mallet Dec 10 '12 at 21:43
No. Use must use FQL for this. You just use the /fql endpoint and put the query in the "q" parameter. Quite easy. – Tommy Crush Dec 10 '12 at 22:51

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.