Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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:

  1. 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.

  2. 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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.