after 3 days googling, that's my problem:
I just need to update my FB fan page with new posts using a php routine associated with my website.
Reading some documentation it seemed quite easy, but still not found a working solution. So the first question is:
Is it possible to do it now? I'm sure it was possible, but FB changed a lot of things and I'm not sure is possible now.
If it's possible, I need to underline that I've already found the code that allows to do it, but I need to get manually the access token from https://developers.facebook.com/tools/explorer/ When I get this access token, I use the following code:
<?php
$access_token = 'blahblahblah'; //From https://developers.facebook.com/tools/explorer/
$page_id = '123456123456'; //If not set, the posting will be performed by the admin
$data['message'] = "In God I trust";
$data['access_token'] = $access_token;
$post_url = 'https://graph.facebook.com/'.$page_id.'/feed';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $post_url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$return = curl_exec($ch);
curl_close($ch);
echo "$return";
?>
This code works perfectly, but since the access token is valid for about 1 hour, I always need to refresh it, and this makes all the automatic procedure useless...
Please this question only requires the CURRENT code to retrieve the access token (and, if necessary, the description to extend authorizative roles bound to the fan page).
Please don't answer things like: "use PHP SDK" or "get an extended access token", since in this moment all posts on google seems to be outdated.