使用常规的 HTML 表单,我可以将图像上传到 URL,它会上传并返回正常。但是,当我在 PHP 中执行此操作时
$bytes = download_attachment($timeline_item_id, $attachment);
$image = imagecreatefromstring($bytes);
imagejpeg($image, 'tempfile.jpg');
$files[] = '@tempfile.jpg;filename=tempfile.jpg;type=image/jpeg';
$post = array('authenticationToken' => 'AUTH_TOKEN','media-content'=>@"tempfile.jpg");
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,"https://api-ssl-5.tenthbit.com/send/media");
curl_setopt($ch, CURLOPT_POST,1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
$result=curl_exec ($ch);
curl_close ($ch);
它不起作用....有什么想法吗?我不确定 imagecreatefromstring 是否正确。但是它创建了一个带有有效图像的 tempfile.jpg 文件。$result 是“true”,而不是来自 FORM 的 JSON 响应
参考表格:
<form action="https://api-ssl-5.tenthbit.com/send/media" method="post"
enctype="multipart/form-data">
<input type="text" name="authenticationToken" id="file" value="AUTH">
<input type="file" name="media-content" id="file"><br>
<input type="submit" name="submit" value="Submit">
</form>