I'm having trouble using the facebook api to post a photo to a page's wall. If I upload the file via php and use $_FILES[]["tmp_name"] as my $filelocation it works fine. However if I change $filelocation to a local filepath ( /tmp/1351750505-24d.jpg ) it doesn't work.
I've given my /tmp dir 777 and made sure my file is 777 as well to eliminate any permission issues. I've also used multiple files to make sure its not just an issue with one file.
The only other thought I have is that this could be a random setting in php.ini, but I didn't see anything glaring at me.
Error log:
[Thu Nov 01 06:52:13 2012] [error] [client 66.x.x.x] {"error":{"message":"(#1) An unknown error occurred","type":"OAuthException","code":1}}, referer: http://origin.example.com/adder/index.php
[Thu Nov 01 06:52:13 2012] [error] [client 66.x.x.x] $filelocation = /tmp/1351752730-24e.jpg, referer: http://origin.example.com/adder/index.php
[ec2-user@ip-10-x-x-x adder]$ ll /tmp/1351750505-24d.jpg
-rwxrwxrwx 1 apache apache 331 Nov 1 06:15 /tmp/1351750505-24d.jpg
$facebook->setFileUploadSupport(true);
$post_id = "";
try
{
$post_id = $facebook->api("/$page_id/photos", 'POST',
array(
'source' => '@' . $filelocation,
'message' => $name
));
error_log("\$filelocation = " . $filelocation);
} catch (FacebookApiException $e)
{
$result = $e->getResult();
error_log(json_encode($result));
$post_id["id"] = "FAIL!";
error_log("\$filelocation = " . $filelocation);
}
sourcefield description in the Graph API photo documentation it should be a "string representing a valid URL". Facebook can't scrape a local path on your server. – cpilko Nov 1 '12 at 13:20