My problem is... about a month ago, my function works fine, but now, no matter what I did
it can't upload picture to an Event any more
my event parameter as below
$event_param = array(
"access_token" => $access_token,
"name" => stripslashes($subject),
"start_time" => $fb_start_time,
"end_time" => $fb_end_time,
"location" => stripslashes($location),
"privacy_type" => "OPEN",
"description" => $content
);
$event_param[basename($file)] = '@' . realpath($file);
$result = $facebook->api("/me/events", "post", $event_param);
And I use console to log success callback
the file part as below
"98398fafd868ada95b21e868d0926ead.jpg"=>"@/var/www/html/zendt1/public/pictures/ricky496/98398fafd868ada95b21e868d0926ead.jpg"
I'm sure this pictures exist and I remember to set fileUpload option true
I did get the event on facebook, too. But still without any picture
that's driving me crazy
Hope anyone can help...