I am using the following code to generate a Facebook login link:
<?php
try {
include_once 'facebook_sdk_libs/facebook.php';
} catch(Exception $o){
echo '<pre>';
print_r($o);
echo '</pre>';
}
// Create our Application instance.
$facebook = new Facebook(array(
'appId' => APPID,
'secret' => APPSECRET,
'cookie' => true,
));
$session = $facebook->getSession();
function d($d){
echo '<pre>';
print_r($d);
echo '</pre>';
}
$fbme = null;
// Session based graph API call.
if ($session) {
try {
$uid = $facebook->getUser();
$fbme = $facebook->api('/me');
} catch (FacebookApiException $e) {
// d($e);
}
}
if($fbme){
$logoutUrl = $facebook->getLogoutUrl();
} else {
$loginUrl = $facebook->getLoginUrl(
array('scope' => 'publish_stream')
);
}
It shows a screen where Facebook shows "Go to App" AND "Cancel". When I click "Go to App", it returns back to my page, but does not post on Facebook wall as I want.
What do I need to change in this code to make Facebook ask and get the permission to "Post on Wall"?