I'm writing an app which posts on a page feed. Everything worked fine, it posted as the PAGE, but yesterday it started posting as the ADMIN of the page. Today it's O.K again.
Is there anything I'm doing wrong or is it a glitch? In Case this will happen again I want to be able to handle this.
the php code I'm using:
require_once('AppInfo.php');
require_once('sdk/src/facebook.php');
$page_access_token = $_POST['page_access_token'];
$page_id = $_POST['page_id'];
$message = $_POST['message'];
$link = $_POST['link'];
$facebook = new Facebook(array(
'appId' => AppInfo::appID(),
'secret' => AppInfo::appSecret()
));
$post_id = $facebook->api(
'/'.$page_id.'/feed',
"post",
array(
'access_token' => $page_access_token,
'message' => $message,
'link' => $link
));