I am trying to get the feed of a certain page through Facebook's GRAPH API, using their PHP SDK.
I have found that by calling this in my browser:
https://graph.facebook.com/XXXXX/feed
I'm getting the fresh feed, and finding a particular post I only see my test comments, which were created x minutes ago, but missing the older comments this item has.
And it is the other way around if I am getting the same feed through the SDK: I am only seeing the old comments.
Of course on Facebook, both type of comments are there... I haven't found any clue to this problem on developers.facebook.com
UPDATE:
This is the SDK call
include_once 'facebook.php';
$fb = new Facebook( array(
'appId' => 'XXXXXXXXXXX',
'secret' => 'XXXXXXXXXXXXXXXXXXXXXXX',
'cookie' => true
) );
$feed = $fb->api('/tenytar/feed');
This is the browser call:
https://graph.facebook.com/tenytar/feed
Results of test:
From the results I am checking the link with ID: 132297713489108_184041244974744
- On facebook this link has 3 likes and 2 comments
- in SDK call, the count of comments: 1 (only the older comment is there)
- in browser call, the count of comments: 1 (only the newer, my comment is there)