I am trying to post content on a Facebook fan page from a CMS. I have lost my time just trying to get access token for that page. I am using latest php facebook SDK (Facebook PHP SDK (v.3.2.2))
I am logged in with permissions: manage_pages, and if I do $Facebook->getUser(), I am getting my facebook userID.
Then I execute this:
$fanPage = $Facebook->api('/' . $PAGE_ID . '?fields=access_token&access_token='. $Facebook->getAccessToken());
I receive an array with pageID only, and without an access_token.
If I try this code:
$fbUser = $Facebook->api('/me/permissions?access_token=' . $Facebook->getAccessToken());
it invalidates my Facebook session and I have to login via Facebook again.
This was working few months ago, and just stopped. Any ideas?