我正在处理记录不完整的第三方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']
的回显显示服务器上具有完全读/写权限的现有资源。