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 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);
}
share|improve this question
Do echo realpath($userPhoto); and it will likely tell you what is the problem. – Ranty Feb 16 at 11:50
127.0.0.1/sidane/upload/8.jpg invalid path – Naveen Programmer Feb 16 at 11:53
@NaveenProgrammer Thanks Naveen... what should be the correct format.. – user2070856 Feb 16 at 12:42
You either have to specify a path in your server’s file system, or exchange the parameter name source for url and give a publicly reachable HTTP URL. – CBroe Feb 16 at 13:25

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.