I am becoming really desperate with posting to facebook feature. I know that many of you have already posted some help answers to this issue up to this point, but reading them has not helped me, unfortunately.
Here's my testing php code which I've tried to run many times but no posts have emerged on the desired page wall.
Any help would be greatly appreciated.
<?php
// print_r($_GET);
include 'http://www.balabuska.cz/facebook.php';
$token='AAAFVjwFqJTUBAEwKoPabwwqYIEBT...';
// Create our Application instance (replace this with your appId and secret).
$facebook = new Facebook(array(
'appId' => '375547669128501',
'secret' => 'APP_SECRET',
'cookie' => true, // enable optional cookie support
));
//$token is the access token from the URL above
$post = array('access_token' => $token, 'message' => 'new test post - ' . date('Y- m-d'));
$facebook->api('/142066152577391/feed','POST',$post);
?>
secretoraccess_tokenfor your application, I suggest you reset 'em immediately (since history is accessible by anyone)... – Juicy Scripter Jan 30 '12 at 22:42