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