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.
