I am trying to build a facebook app which will post pictures to user's wall from my server. I am using the following code.
But while running the script, I am getting an error
Couldn't open file "".
Could any one tell me what went wrong? I have given my code below
$userPhoto = "http://127.0.0.1/sidane/upload/8.jpg";
//HTTP POST request to PAGE_ID/photos with the publish_stream
$post_url = '/'.$fbuser.'/photos';
//posts message on page statues
$msg_body = array(
'source'=> '@'.realpath($userPhoto),
'message' => $userMessage
);
if ($fbuser) {
try {
$postResult = $facebook->api($post_url, 'post', $msg_body );
} catch (FacebookApiException $e) {
echo $e->getMessage();
}
}else{
$loginUrl = $facebook->getLoginUrl(array('redirect_uri'=>$homeurl,'scope'=>$fbPermissions));
header('Location: ' . $loginUrl);
}
echo realpath($userPhoto);and it will likely tell you what is the problem. – Ranty Feb 16 at 11:50sourceforurland give a publicly reachable HTTP URL. – CBroe Feb 16 at 13:25