我正在尝试通过 php 应用程序上传图像。
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);