Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.