-2
我想通過php應用上傳圖片。無法上傳並使用PHP在Facebook應用程序上標記照片?
Error :-
Uncaught CurlException: 26: failed creating formpost data thrown in
base_facebook.php on line 814
我的代碼: -
$pic='img/'.$fbid.'.jpg';
$photo_details = array('message'=> "test", 'image' => '@' . realpath($pic), 'tags' => $tags);
$upload_photo = $facebook->api('/'.$album_uid.'/photos', 'post', $photo_details);
imagedestroy($image);
您現在可以同時上傳照片和標籤。 – Brian