我正在尝试将图像从我的服务器上传到安装了 chevereto 的 img 服务器,但我无法让它工作
到目前为止,这是我的代码:
$directory = "/var/www";
$images = glob($directory . "/*.jpg");
foreach($images as $image)
{
echo $image;
$data = base64_encode(file_get_contents($image));
$run= shell_exec("curl --location --request POST \"http://ip/api/1/upload/?key=123456789&source=$data&format=json\"");
print_r($run);
}
收到错误:414 Request-URI Too Large
这是 api 文档: https: //chevereto.com/docs/api-v1
动漫人物