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 read a lot on this platform, but no one seems to get the answer about my problem.

There is my code :

$file= $str.".png";

$facebook->setFileUploadSupport(true);

$post_data = array(
  "message" => "my message."
); 
$post_data[basename($file)] = '@' . dirname(__FILE__) . '/'.$file.'';
$data = $facebook->api('/me/photos', 'post', $post_data);

I got a CurlException: 26 error. I even try with this one :

$post_data[basename($file)] = '@' . realpath($file);

But I got the same error.

I first consider my problem was on $file. If I do an echo on this one, I a have the image name like this : 0gwP7eDAtb2X.png

Now, if I test this code :

$post_data[basename($file)] = '@' . realpath(0gwP7eDAtb2X.png);

The picture is correctly uploaded on my wall.

Does anyone have a solution or a clue for my problem ? Thanks a lot.

share|improve this question

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.