I have this code
public function post_to_friends($num,$names = NULL) {
self::get_friends($num);
$batchPost = array();
$body = array(
'message' => 'fart',
);
foreach ($this->friend_id as $friend) {
$batchPost[] = array(
'method' => 'POST',
'relative_url' => "$friend/feed",
'body' => http_build_query($body)
);
}
try {
$multiPostResponse = "https://graph.facebook.com/" . "?batch=" .urlencode(json_encode($batchPost)) . "&access_token=" . $this->access_token . "&method=post";
file_get_contents($multiPostResponse);
} catch(FacebookApiException $e){
error_log($e);
echo("Batch Post Failed");
}
and get_friends method
protected function get_friends($num) {
$friends = self::$facebook -> api('/me/friends');
$friends = $friends['data'];
for($i = 0; $i < $num; $i++) {
$friend = $friends[$i];
if($this->user != $friend['id']) {
$this->friend_id[] = $friend['id'];
$this->friend_name[] = $friend['name'];
}
}}
And I'm getting this
[
{
"code": 200,
"headers": [
{
"name": "Access-Control-Allow-Origin",
"value": "*"
},
{
"name": "Cache-Control",
"value": "private, no-cache, no-store, must-revalidate"
},
{
"name": "Connection",
"value": "close"
},
{
"name": "Content-Type",
"value": "text/javascript; charset=UTF-8"
},
{
"name": "Expires",
"value": "Sat, 01 Jan 2000 00:00:00 GMT"
},
{
"name": "Pragma",
"value": "no-cache"
}
],
"body": "{\n \"id\": \"500960109_10151950822065110\"\n}"
},
As you can see I'm not getting any kind of error. When I try to visit facebook.com/500960109_10151950822065110 it gives me page not found. Why this code isn't working?