Posts scheduled via Graph API frequently do not get published
Hi I'm using facebook php sdk to make posts to my fanpage. I am attempting to schedule these posts to the future. I am running into some problems though. Here is my code <?php // This code is just a snippet of the example.php script // from the PHP-SDK <https://github.com/facebook/facebook-php-sdk/blob/master/examples/example.php> require_once('facebookphp/src/facebook.php'); $app_id = "xxxxx"; $app_secret = "xxxxxx"; // Create our Application instance (replace this with your appId and secret). $facebook = new Facebook(array( 'appId' => $app_id, 'secret' => $app_secret, 'fileUpload' => true, )