I have a facebook application, and a facebook (fan) page. I want to publish to the page, authentified as the app (if possible), from a php script run periodically as a cron job.
I'm using the official facebook php sdk.
I am trying to post to the page with $facebook->api($pageId."/feed", 'POST', $post);, where $post contains the required message and link keys, and should also contain access_token.
To get the access token, I tried using $facebook->getApplicationAccessToken(), and making a curl request to https://graph.facebook.com/oauth/access_token (same result).
The response I get is:
OAuthException: (#200): The user hasn't authorized the application to perform this action
I was able to post to the page, but with an access_token from https://graph.facebook.com/me/accounts, which required me to provide a user's access token in the first place. The user's and and his page's tokens seem to expire, at most after 60 days, so this solution is not good.
I tried granting permissions like explained here Authorizing a Facebook Fan Page for Status Updates, but I still get the error from before.
Any solution on how to post to a facebook page which does not involve user login will be welcome!