简体   繁体   中英

Schedule posts on Facebook page with PHP SDK

I am trying to schedule wall posts to be added to the Facebook business page in the future.

As far as I can see Facebook does not recommend to use "offline_access" anymore.

How would you do that?

This is my code so far. It works if I am already logged into Facebook.

EDIT: Naturally I will create some code that check the schedule that I pull from the database. And use a cron job to regulary check that schedule.

require_once('src/facebook.php');

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

$facebook = new Facebook($config);
$user_id = $facebook->getUser();

$page_info = $facebook->api("/PAGE_ID?fields=access_token");

try {
    $ret_obj = $facebook->api('/PAGE_ID/feed', 'POST',
    array (
        'link' => 'http://www.example.com/',
        'message' => 'This is a test',
        'access_token'  => $page_info['access_token']
    ));
} catch(FacebookApiException $e) {
    $login_url = $facebook->getLoginUrl( array(
        'scope' => 'publish_stream'
    ));

    print_r($e->getType());
    print_r($e->getMessage());
}

You have to extend access_token periodically now. All other code should be working fine as previously

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM