I have a little question on some facebook development stuff. Currently I'm trying to get information about Photos that I posted via Instagram. I've tried it with the graph api:
<?php $status = $fb->api($fb->getUser().'/photos', 'GET'); ?>
<pre><?php print_r($status);?></pre>
But I don't get information about posts that were done by using other apps. Everything else show up just fine. The permissions I required are: user_status, user_photos, friends_photos'
Where could the problem source be?
Thanks in advance, Thomas