All I have:

Facebook Application
with AppID, AppSecret, ApiKey

Facebook Page
with PageID

Own Facebook account
I'm admin and creator of application and page above.

So, I need to post to Facebook's Page's wall some data from my website.
E.g. I write some blog-post, and I'd like to get name, short-description and picture on my Facebook Page's wall. Or by cron-job, I need to write on Facebook's Page's wall some articles every day in automatic mode.

Can anyone explain, step-by-step, what actions should I do?

I've read this link: http://developers.facebook.com/docs/authentication/ (Page Login), but I don't understand, what to write in my code.

Is it possible to post to Facebook's Page's wall from my PHP web-site automatically?

Please help!

UPD1

I request for App Access Token?

    $url = 'https://graph.facebook.com/oauth/access_token?grant_type=client_credentials&client_id='
        .Yii::app()->params['FacebookAppID'].'&client_secret='.Yii::app()->params['FacebookSecret'];

Answer is like this (fake symbols):

access_token=326584076429|ax3-D39YbpDcR9rMRQn_fMvNu_s

What access_token is it? Application Access Token? How to get User's Access Token?

If I try to use this access token here https://developers.facebook.com/tools/explorer?method=GET&path=me%2Faccounts

I got message: An active access token must be used to query information about the current user

So please, help. How to obtain right access token?

UPD2:

How can I get right Facebook tokens in my application without any client interaction?
I'm admin and creator of Facebook Application and Facebook Page. Please help :)

link|improve this question

71% accept rate
feedback

3 Answers

Step by step

  1. Authenticate a user that is a page admin (yourself)
  2. Request an extended access token (to get a 60 day variety as offline_access is gone). See https://developers.facebook.com/docs/offline-access-deprecation/
  3. Call Graph API me/accounts and search thru the resulting list to find the page you're interested in
  4. Take the page access token from the page and start using that for the calls to post
  5. It might be possible to get an extended access token for a page access token like described in step 2, please try and let us know if that can be done for page access token too.

You can experiment with the above at https://developers.facebook.com/tools/explorer

Happy Coding!

EDIT

For getting an access token without dialogs for any user, you can use https://developers.facebook.com/tools/access_token/ to get an access token.

link|improve this answer
Thanks for answer. How Authenticate a user that is a page admin can be done? What data should I pass and where? Thanks. :) – Lari13 Feb 10 at 10:24
Please experiment for yourself at developers.facebook.com/tools/explorer – DMCS Feb 10 at 10:36
I'm trying :) with no result. Please, see UPD1 in first post. – Lari13 Feb 10 at 10:44
1  
Thank you for showing some honest effort! Understanding the whole Facebook authentication can take a while (took me two solid days of pouring thru it to understand it...yeah I've got a thick head). That hard part of what you have is that you want it to be a cron job. Which means you will have to come get a user access token from that graph explorer tool, then request the 60 day version (see developers.facebook.com/docs/offline-access-deprecation) and then put that token into your cron-job code. The better way is to ensure you authenticate using php each time you want to post. – DMCS Feb 10 at 11:04
2  
After the 60 days, Facebook requires the user to Re-interact with your app. Don't shoot me, I'm just reading what they wrote. From their documentation: "If you would like to renew a still valid access_token, you will have to get a new client-side access token first and then call the same endpoint below. Apps will not be able to setup a background/cron job that tries to automatically extend the expiration time, because the "authorization code" is short-lived and will have expired." – DMCS Feb 17 at 3:44
show 15 more comments
feedback

Step 1 - Request For manage_pages permission ( Allow this process ) :

https://www.facebook.com/dialog/oauth?client_id=YOUR_APP_ID&redirect_uri=YOUR_URL&scope=manage_pages&response_type=token

Step 2 - Get Access token from URL :

If administrator allow this permission. You should be redirected to url on below.

http://YOUR_URL/#access_token=AAABY5jBXQz0BAEzNKkb6FZC22D7aOoKIfFuozIjoOpkGHRJ6SyzBvqx24JGooMc31374EdRFNXkOyLZCBzETRD9vhZAZC8MZD&expires_in=0

Use Access token in url and you should get this -> AAABY5jBXQz0BAEzNKkb6FZC22D7aOoKIfFuozIjoOpkGHRJ6SyzBvqx24JGooMc31374EdRFNXkOyLZCBzETRD9vhZAZC8MZD

Step 3 - Check Access token using Graph API :

https://graph.facebook.com/me/accounts?access_token=TOKEN_FROM_ABOVE

Connection will return information and access token for each page.

Step 4 - Implement To Your Code :

You can use App access token while call a Facebook Graph API method.

Update:
If you want use API method in Facebook SDK, DEPRECATED REST API OR FQL Query...

You have to use users_accesstoken and how you can get it:

Method 1:

Use your account or users to login your facebook page with offline_access permissions and grab access_token while login success using

$facebook->getAccessToken()
and save it in database so you can use it anytime.

You can check expiration time of token in here, token with offline_access permissions never expire except users change his password or maybe anything else.

Method 2:

You can update your access_token dynamically using this code ( say goodbye for expire token ). Facebook give this solution in here, it's sample for execute FQL Query.

Code:

<?php
$app_id = 'YOUR_APP_ID';
$app_secret = 'YOUR_APP_SECRET';
$my_url = 'POST_AUTH_URL';
$code = $_REQUEST["code"];

//auth user
if(empty($code)) {
$dialog_url = 'https://www.facebook.com/dialog/oauth?client_id=' 
    . $app_id . '&redirect_uri=' . urlencode($my_url) ;
echo("<script>top.location.href='" . $dialog_url . "'</script>");    
  }

//get user access_token
$token_url = 'https://graph.facebook.com/oauth/access_token?client_id='
. $app_id . '&redirect_uri=' . urlencode($my_url) 
. '&client_secret=' . $app_secret 
. '&code=' . $code;
$access_token = file_get_contents($token_url);   
link|improve this answer
What is redirect_uri=YOUR_URL in first step? Script should run in automatic mode, with no user interaction. So, if I try to CURL this link - I got Facebook's login form. With no way to continue :) – Lari13 Feb 20 at 9:13
feedback

Try this simple function to post into a wall

<?php


    function doWallPost($postName='',$postMessage='',$postLink='',$postCaption='',$postDescription='')
    {
    $FB_APP_ID='xxxxxxxxxxxxxxxxxxxxxxxx';
    $FB_APP_SECRET='xxxxxxxxxxxxxxxxxxxxxxxxxxx';

    $APP_RETURN_URL=((substr($_SERVER['SERVER_PROTOCOL'],0,4)=="HTTP")?"http://":"https://").$_SERVER['HTTP_HOST'].$_SERVER['SCRIPT_NAME'];

    $code = $_REQUEST["code"];

    if(empty($code)) 
    {
        $dialog_url = "http://www.facebook.com/dialog/oauth?client_id=".$FB_APP_ID."&redirect_uri=".$APP_RETURN_URL."&scope=publish_stream";                  
        header("Location:$dialog_url");
    }

    $token_url = "https://graph.facebook.com/oauth/access_token?client_id=".$FB_APP_ID."&redirect_uri=".urlencode($APP_RETURN_URL)."&client_secret=".$FB_APP_SECRET."&code=".$code;
    $access_token = file_get_contents($token_url);

    $param1=explode("&",$access_token);
    $param2=explode("=",$param1[0]);
    $FB_ACCESS_TOKEN=$param2[1];


    $url = "https://graph.facebook.com/me/feed";
    $attachment =  array(   'access_token'  => $FB_ACCESS_TOKEN,                        
                    'name'          => $postName,
                    'link'          => $postLink,
                    'description'   => $postDescription,
                    'message'       => $postMessage,
                    'caption'       => $postCaption,
                );

    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
    curl_setopt($ch, CURLOPT_CONNECTTIMEOUT,2);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER,true);
    curl_setopt($ch, CURLOPT_POST, true);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $attachment);
    $result=curl_exec($ch);
    header('Content-type:text/html');
    curl_close($ch);

    return $result
    }







    ?>
link|improve this answer
I'm executing this script from cron-job, not from browser. So I can't do any approval in Facebook's popup dialogs because it isn't in browser :) – Lari13 Feb 23 at 11:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.