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 try publish in wall to facebook but can not work.

I have my website with a facebook app. and I would like that when you open the link www.xample.me/appfb/ facebook is open on the dashboard and is posted on the wall of the user who enters so automatically. redirected to my site without www.xample.me/appfb/ instead open the link apps.facebook.com / xamplefbapp / and with that between my application and post on the wall of the person for the moment only i have this code

<?php
require_once 'library/facebook.php';
try{
    $app_id = "XXXXXXXXXXXXXXXX";
    $app_secret = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";
    $facebook = new Facebook(array(
            'appId' => $app_id,
            'secret' => $app_secret,
            'cookie' => true,
        ));

    if(is_null($facebook->getUser())) {
        header("Location:{$facebook->getLoginUrl(array('req_perms' => 'publish_stream'))}");
        exit;
    }
    $me = $facebook->api('/me');
}catch(Exception $e){
    echo $e->getMessage();
    echo '<p>clean your browser historial ';
    die;
}

?>

in this point only request permitions but not redirect and not publish. thanks for all help

share|improve this question
There is no real question here as far as I can see. If you don’t know how to make a wall post using the API, please read up on this topic in the docs. – CBroe Aug 20 '12 at 8:16

closed as not a real question by CBroe, Jürgen Thelen, Mithun, Pekka 웃, KingCrunch Aug 21 '12 at 9:33

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

after this code i used

$attachment =  array(
'access_token' => $token,
'message' => Hi all,
'name' => Appname,
'link' => apps.facebook.com / xamplefbapp /,
'description' => details,
'picture'=> image.jpg,
'actions' => json_encode(array('name' => $action_name,'link' => $action_link))
);

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,'https://graph.facebook.com/xamplefbapp/feed');
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $attachment);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);  //to suppress the curl output 
$result = curl_exec($ch);
curl_close ($ch);

but not redirect

share|improve this answer
hi CBroe maybe you not understand me, I know how to publish in wall but my questions is hot to redirect to apps.facebook and not run app in my site www.xample.me/appfb/ using CURL – daemonclass Aug 21 '12 at 1:30

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