Digging around for several days to get my PHP app write on facebook fan page and got almost crazy.
Already given my app manage_page permission for a particular facebook page.
Visited h..s//www.facebook.com/dialog/oauth?client_id=APP_ID&redirect_uri=SOME_FALLBACK_URL_TO_GET_ACCESS_TOKEN_FROM_URL&response_type=token&scope=manage_pages,publish_stream
Copied access token from result of previous step
Visited h..s//graph.facebook.com/me/accounts?access_token=COPIED_ACCESS_TOKEN
Got the result as following:
"data": [ { "name": "PAGE_TITLE", "access_token": "SHORT_LIVING_ACCESS_TOKEN", "category": "Local/travel", "id": "PAGE_ID_THAT_APP_IS_TO_WRITE_ON_WALL", "perms": [ "ADMINISTER", "EDIT_PROFILE", "CREATE_CONTENT", "MODERATE_CONTENT", "CREATE_ADS", "BASIC_ADMIN" ] },
Copied the SHORT_LIVING_ACCESS_TOKEN
Visited h..s://graph.facebook.com/oauth/access_token?client_id={APP_ID}&client_secret={APP_SECRET}&grant_type=fb_exchange_token&fb_exchange_token={SHORT_LIVING_ACCESS_TOKEN_FROM_STEP_5}
Getting the error and stuck here: {"error_code":1,"error_msg":"An unknown error occurred"}
p.s. I correctly replaced {APP_ID}, {APP_SECRET} where necessary.
Please, help!