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'm trying to post to my facebook group wall but I keep on getting the above error. Can anyone please tell me what I might be doing wrong here? I have checked the Facebook documentation but I still can't seem to fix it myself. My code is as follows:

$facebook = new Facebook(array(
  'appId' => $app_id,
  'secret' => $app_secret,
  'perms' => 'offline_access, user_groups, publish_stream',
  'cookie' => true
));


$result = $facebook->api(
     '/xxxxxxxxxgroupid/feed/',
      'post',
      array('access_token' => $facebook->getAccessToken(), 'message' =>  'Playing around with FB Graph..')
);
share|improve this question

2 Answers

up vote 0 down vote accepted

I think you need user_groups extended permission.

share|improve this answer

Use Try before, that sould work fine

try {
        $params = array(
            'message'       =>  "Hurray! This works :)",
            'name'          =>  "This is my title",
            'caption'       =>  "My Caption",
            'description'   =>  "Some Description...",
            'link'          =>  "http://stackoverflow.com",
            'picture'       =>  "http://i.imgur.com/VUBz8.png",
        );

        $post = $facebook->api("/$user/feed","POST",$params);

        echo "Your post was successfully posted to UID: $user";

    }
    catch (FacebookApiException $e) {
       $result = $e->getResult();
    }
share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.