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 hope it's not that complicated but since Facebook has changed its API a lot(concerning permissions and so on) I find many outdated info which doesn't really help me. The situation is:

  1. I got a Facebook page with Page Tab
  2. I got a Facebook-App which is associated with that page(via the tab).
  3. My own WebApp posts via Facebook PHP-SDK to the wall of the page and each user sees the news in the stream.

Question: How can I post to the users timeline via that app?

My code so far(which posts to the wall of the page)

require 'facebook.php';
$facebook = new Facebook(array(
    'appId'  => 'xxxxxxxxxxxxxx',
    'secret' => 'xxxxxxxxxxxxxxxxxxxxxxxxxx',
));
$loginUrl = $facebook->getLoginUrl();
$user = $facebook->getUser();

$page_id = 'xxxxxxxxxxxxxxxxxxxx';
$page_info = $facebook->api("/$page_id?fields=access_token");
if( !empty($page_info['access_token']) ) {
    $args = array(
        'access_token'  => $page_info['access_token'],
        'message'       => "Neuer Test!"
    );
    $post_id = $facebook->api("/$page_id/feed","post",$args);
} else {
    $permissions = $facebook->api("/me/permissions");
    if( !array_key_exists('publish_stream', $permissions['data'][0]) || 
        !array_key_exists('manage_pages', $permissions['data'][0])) {
        header( "Location: " . $facebook->getLoginUrl(array("scope" => "publish_stream, manage_pages")) );
    }

}

This is working fine, but the message is not available in the timeline of the users who liked the page, only in their own stream. Is it possible to publish to their timeline?

share|improve this question
Ask the user to login to your application and make sure you have publish_stream permissions, Once you get the permissions and the user is logged in. You can post to their wall by making a POST request to "/me/feed" with the required parameters (Check Docs). But i don't think that's allowed by FB (The user should be aware that your app will publish otherwise you're probably breaking FB's Platform TOS). You might wanna check their TOS before implementing such things as FB might restrict publish rights of your app. – Syed I.R Jan 24 at 14:28

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.