I have developed a facebook application that post images to user account. I have registered that apps. When I run my code it should post image to the user wall who is logged in. It is working only my account is logged in. If some other people logs in and run my PHP script then no error is found but actually image is not posting to that user's wall. I have disabled the sandbox too. What could be the other reasons?
Please let me know if you need my source code.
<?php
include("facebook.php");
$filename ="50ed5eb3b33d0.png";
$facebook = new Facebook(array(
'appId' => 'XXXXXXXXXXXXXXXXXX',
'secret' => 'XXXXXXXXXXXXXXXXXXXXXXXX',
'cookie' => TRUE,
));
// Get User ID
$user = $facebook->getUser();
if(!$user)
{
$url = $facebook->getLoginUrl(array(
'canvas' => 1,
'fbconnect' => 0,
'req_perms' => 'publish_stream, user_photos, read_stream, read_friendlists'
));
echo "<script type='text/javascript'>top.location.href = '$url';</script>";
}
else
{
try {
$uid = $facebook->getUser();
$facebook->setFileUploadSupport( true );
$parameters = array(
'access_token' => $facebook->getAccessToken(),
'message' => 'PHOTO_CAPTION',
'image' => '@' . realpath( './images/'.$filename )
);
$post_id = $facebook->api('/'.$uid.'/photos', 'POST', $parameters);
if(isset($post_id))
{
echo "Thank you for posting" .$uid;
unlink('./images/'.$filename);
}
}//end try getUser
catch (FacebookApiException $e) {
echo "Error:" . print_r($e, true);
}//end of catch getUser
}//end of else user
?>
req_permsis an outdated parameter for creating the login URL. Usescopeinstead, that's the current way to ask for permissions. – CBroe Jan 10 at 9:02