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 a site with recipes and also the site has a groups in facebook with several thousands of friends. I want to post new recipes on the group timeline. I can do it with cron every 1 hour for example.

require_once('facebook.php');

    $config = array(
        'appId' => 'xxx',
        'secret' => 'xxx',
    );

    $facebook = new Facebook($config);

    // If not, we'll get an exception, which we handle below.
    try {
        $ret_obj = $facebook->api('/page_id/feed', 'POST',
                                    array(
                                    'link' => 'www.example.com',
                                    'message' => 'Posting with the PHP SDK!'
                                ));
        echo '<pre>Post ID: ' . $ret_obj['id'] . '</pre>';

    } catch(FacebookApiException $e) {
        echo "error type: ". $e->getType()."<br />";
        echo "error mesage: ". $e->getMessage()."<br />";
    }   

How should I change my script to be able to post on the groups page from cron daemon?

I changed the script little bit and now I have this error: error type: OAuthException error mesage: (#200) The user hasn't authorized the application to perform this action

share|improve this question

2 Answers

Try:

$config = array(
    'appId' => 'xxx',
    'secret' => 'xxx',
    'cookie' => true
);

Setting a cookie should keep you logged in.

share|improve this answer
This did not change anything. I still cannot post the message ... – Anatoli Marinov Jan 20 at 16:14
Well, I see the problem now. You try to post your message - if that does not work, you log in. How is that supposed to work? – Max Beikirch Jan 20 at 16:24
I changed the script and now I have better error message. – Anatoli Marinov Jan 20 at 16:42
How can I authorize the app to perform this action ? – Anatoli Marinov Jan 20 at 16:47
What is your error message? – Max Beikirch Jan 24 at 13:11

As stated in the document here:

Users can post a link on the Group's wall by issuing an HTTP POST request to /GROUP_ID/feed with the publish_actions permissions and the following parameters. (publish_stream will also work, but you should use publish_actions.) This requires a user access_token.

So what you need to do to just post (run your script as the user):

  1. publish_actions permission
  2. the user access_token

Now to use this as cronjob, I usually do the following:

  1. authorize the user (who has rights to publish to this group) with the required permission
  2. extend his token
  3. store this token in the DB
  4. use the token to publish
  5. keep an eye on the expiry variable and before, say, 3 days of token expiration --> send an email to the user to "login" to your app again and then go-to #3
  6. always catch any error while posting and log it; you can check if the error is about the access token and hence go-to #5
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.