I am writing a simple Facebook page tab app that will allow me to post messages (status updates, links, photos and videos) to multiple pages.
I am having an issue with the Facebook API (using the PHP SDK) trying to post various things to a page's timeline.
When I post a status update, it successfully posts under the name of the page.
$pages = $this->facebook->api('me/accounts', 'GET');
$pages = json_decode(json_encode($pages), FALSE);
foreach ($pages->data as $page) {
if (in_array($page->id, $_POST['pages'])) {
$data = array(
'access_token' => $page->access_token,
'message' => Arr::get('status', $_POST)
);
$queryString = http_build_query($data);
$this->facebook->api("$page->id/feed?".$queryString, 'POST');
}
}
As soon as I add any more parameters (i.e. attempt to post a link) the post is made under my admin account (i.e. Chris Hayes posted a link to 'Page X').
$pages = $this->facebook->api('me/accounts', 'GET');
$pages = json_decode(json_encode($pages), FALSE);
foreach ($pages->data as $page) {
if (in_array($page->id, $_POST['pages'])) {
$data = array(
'access_token' => $page->access_token,
'link' => Arr::get('link', $_POST),
'message' => Arr::get('status', $_POST)
);
$queryString = http_build_query($data);
$this->facebook->api("$page->id/feed?".$queryString, 'POST');
}
}
I have no idea what's going on here. Literally the only thing that has changed is adding the 'link' parameter. If anyone can help me I'd greatly appreciate it!
Edit The permissions I've acquired are: email, user_about_me, user_likes, user_birthday, manage_pages, publish_stream
Regards, Chris
pageid/linksinstead ofpageid/feed, according to a comment in this bug report that helps: developers.facebook.com/bugs/482882205102783 – CBroe Mar 7 at 18:23