如何确保cURL POST请求实际上有一个文件

时间:2018-06-18 23:53:45

标签: php api curl

我正在处理记录不完整的第三方API,尝试将文件上传到特定资源,并且我从端点收到错误消息:the request does not contain any file如何查看我的php cURL请求以确保文件正确附加? 这是我的代码:

$args['file'] = '@'.'filesToUpload/'.$fileName;
$uploadFileCurl = curl_init("https://path/to/endpoint");
curl_setopt($uploadFileCurl, CURLOPT_HTTPHEADER, array("Authorization: $postDetails[post_auth_key]"));
curl_setopt($uploadFileCurl, CURLOPT_POST, 1);
curl_setopt($uploadFileCurl, CURLOPT_POSTFIELDS, $args);
$zohoDocResponse = curl_exec($uploadFileCurl);

$args['file']的回显显示服务器上具有完全读/写权限的现有资源。

0 个答案:

没有答案