I am currently having issues with the 60 day access_token. I grab the fansite access_token thru /me/applications and I want to post on them, without the need for refreshing the site every 2 hours.
When I'm parsing the token for the fansite in the way facebook provides it just throws an error.
The login is handled thru Javascript and in the background with the PHP SDK.
Greetings, Moritz
Edit:
{"error_code":1,"error_msg":"An unknown error occurred"} is the error.
Code is this:
$attachment = array('message' => $post['title'],
'link' => $unique,
'actions' => '{"name": "Fanseiten Admin?", "link": "http://google.com"}',
'access_token' => $page['access_token']);
$result = $facebook->api('/'.$page['pageid'].'/feed', 'post', $attachment);
Simply pushes to a site with the access token stored in a database.