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.

I am attempting to add functionality for a web based application to make posts to Facebook via the API. I have things working to the point where it will post via my application. The only thing I don't like is that you have to login to Facebook with the appropriate account before it will allow this to happen. This causes potential problems as I can't guarentee that the same Facebook account will be used with all users of this application.

How do I set things up so that I don't have to force a login to Facebook everytime I want to make a wall post?

FYI: This is setup to use a Facebook account (where the app id / secret were generated from) and post to a company page wall to which that account is set as an admin.

My code is as follows:

    include siteRoot . "/_facebook/facebook.php";

    $app_id = "xxxxx";
    $app_secret = "xxxxx";
    $page_id = "xxxx";

    $facebook = new Facebook(array(
     'appId' => $app_id,
     'secret' => $app_secret,
     'cookie' => true
    ));


    $login_url = $facebook->getLoginUrl(
        array('scope' => 'publish_stream')
    );


    if (! $facebook->getUser()) {
    echo '<script type="text/javascript">';
    echo "top.location.href = '$login_url'";
    echo '</script>';
    exit;
    }

    if ($facebook->getUser()) {

 try {

$page_info = $facebook->api("/$page_id?fields=access_token");



if( !empty($page_info['access_token']) ) {
    $args = array(
        'access_token'  => $page_info['access_token'],
        'message'       => $message 
    );


    $post_id = $facebook->api("/$page_id/feed","post",$args);

}

} }

share|improve this question
have you tried offline access permission? and can you give more info about your app? i mean is it web/canvas/page tab/ios/android/mobile web ? – bool.dev Dec 22 '11 at 9:29
What is offline access permission? My app is a custom CMS system that has the ability to post news items to a customers Facebook wall. – user1110562 Dec 28 '11 at 1:18
Anyone able to answer this question? – user1110562 Jan 2 '12 at 2:46
you haven't asked for manage_pages permission? are you getting the correct access token for sure? – bool.dev Jan 2 '12 at 4:52
I believe I am getting a correct access token. I think the issue lies in the getUser() check. This will vary depending on if you are already logged into Facebook when using the app. I want to be able to hard code this to only use one specific Facebook user account, regardless of who is using my application. – user1110562 Jan 3 '12 at 19:19

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.