I feel absolutely bizarre having to ask this, however after several hours of unsuccessfully, apparently, setting permissions or setting up the correct access token, I felt I should seek some experienced help here.
I've tried several different routes of leveraging a couple APIs to send automated updates to a particular organization Facebook Page, however each time I meet with varied errors. The most recent couple are:
• WWW-Authenticate: OAuth "Facebook Platform" "insufficient_scope" "(#200) This API call requires a valid app_id."
• OAuthException: (#200) The user hasn't authorized the application to perform this action
My App "Extended Permissions" on the Settings -> Auth Dialog consist of: publish_stream, status_update and manage_pages
I have acquired an access_token as per instructions at https://developers.facebook.com/docs/reference/api/page/ and I've even set up a Facebook app and given it publish_stream Extended Permissions.
Additionally, for example, when I follow, instructions here: http://www.sergiy.ca/post-on-facebook-app-wall-and-fan-page-wall-as-admin/ - I come up with the same access_token that I've been attempting to use. When I simply try to go to my feed (via graph.facebook.com/APP_ID_NUMERIC_SEQUENCE/feed) I'll get a message such as:
{
"error": {
"message": "An access token is required to request this resource.",
"type": "OAuthException",
"code": 104
}
}
Could someone please advise as to what steps precisely to take to make any given Facebook page from being new not only allowing external updates, but also how to obtain all pertinent tokens and id's that will be necessary for an automated update?
As you can see, I'm not asking how to make the updates, but rather simply I want to be sure that I'm dotting all of my i's and crossing my t's with regards to all of the initial steps as it seems obvious that I'm missing a simple dependency step.
fb_graphorkoalagem, however I'm open and free to use any method and any sdk version. The actual application that is making the updates is being hosted on Heroku, however I'm attempting test updates initially on my local development workstation. Again, I think the primary issue stems from permissions somewhere more so than surrounding software issues. – ylluminate Apr 16 '12 at 23:03