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