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'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.

share|improve this question
Have you verified that your script even reaches the point where you’re trying to publish the action? – CBroe Sep 12 '12 at 9:01

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.