I'm trying to create a Facebook Native app using PHP SDK, so that I can automatically post links and events to the pages I own from cron service every now and then.
I got App Access Token, and gave this app all required privileges: publish_stream, manage_pages and create_event.
With Graph API I can post to my users profile page with simple call to:
$facebook->api( "/" . USER_ID . "/feed", 'post', $tmp_fields );
but I cannot post to a page with similar:
$facebook->api( "/" . PAGE_ID . "/feed", 'post', $tmp_fields );
Moreover I cannot get pages credentials with /USER_ID/accounts since it returns:
{
"error": {
"message": "(#15) This method is not supported for native apps",
"type": "OAuthException",
"code": 15
}
}
nor access /PAGE_ID/?fields=access_token since it just returns id field of the page.
So, what is the right way of posting to users pages for standalone apps which can be for example run from cron every week or so. How to get Page Access Token from just App Access Token in a Native app?
