I'm trying to use the Facebook PHP SDK to post a read (action) article (object) to the timeline. It's the default one (news.reads).
Works well through the JS API but the PHP ones doesn't return anything.
Posting code below.
Thanks to anyone who can help!
require 'facebook/facebook.php';
$facebook = new Facebook(array(
'appId' => 'ID',
'secret' => 'SCRT',
'cookie'=>true
));
$user = $facebook->getUser();
if(!$facebook->getUser())
{
$url = $facebook->getLoginUrl(array('scope'=>'publish_actions'));
echo "<script> top.location=\"".$url."\"; </script>";
exit(0);
} else {
$params = array(
'article' => 'LINK_TO_ARTILE',
'access_token' => $facebook->getAccessToken()
);
$out = $facebook->api('/me/news.reads', 'post', $params);
print_r($out);
}
It's pretty standard code, I'm surprised it doesn't work.
