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 have a problem in uploading photos to my wall via application. I am able to post messages in wall. But photos doesn't work. I have allowed both publish_stream and update_photos permission to the application.

Here is my code -

<?php
  if ($_SERVER["REQUEST_METHOD"] == "POST" && !empty($_POST["message"])) 
{
    if (is_uploaded_file($_FILES["image"]["tmp_name"])) 
    {
    $finfo = finfo_open(FILEINFO_MIME_TYPE);
    $mime = finfo_file($finfo, $_FILES["image"] ["tmp_name"]);
    $allowed = array("image/gif", "image/jpg", "image/jpeg",    "image/png");
    if (in_array($mime, $allowed)) 
    {
        $data = array(
            "name" => $_POST["message"],
            "access_token"   => $access_token,
        "image" => "@" . realpath($_FILES["image"]              ["tmp_name"]));
        $facebook->setFileUploadSupport(true);
        $status = $facebook->api("/me/photos", "POST", $data); 
    }

Appreciate your help on this.

share|improve this question
2  
Welcome to Stack Overflow! Would you please elaborate on what "photos doesn't work" means? Are you getting an error message? Does the code complete, but you not seeing an expected result? If so, what is the expected result that you are not seeing? Providing details such as this goes a long way for other to help you with your question. – Mark Hildreth Aug 12 '12 at 19:28

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.