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:
- I got a Facebook page with Page Tab
- I got a Facebook-App which is associated with that page(via the tab).
- 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?