I am using php sdk in my facebook application and request the required extended resolution. I can get all status updates from a user who uses my application from api call
$statuses = $facebook->api('/me/statuses?limit=0');
But when I use the same method with this friend of the user.
$friendStatuses = $facebook->api('/'.$user_id.'/statuses?limit=0');
I got an empty array. I tried not to use "? Limit = 0", but the result is still the same.
I also tried using
$friendFeed = $facebook->api('/'.$user_id.'/feed?limit=0');
and received some feed from this user, but not all. Even if I changed "? Limit = 0" to "limit = 1000", but I have about 500 elements, but this user has more feed than that for sure.
My work is aimed at collecting the statuses of users and friends and their clustering.
php facebook facebook-graph-api
naokikun
source share