这是我尝试通过api
删除文件的代码$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://api.cloudflare.com/client/v4/zones/<MY-ZONE-ID>/purge_cache");
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "DELETE");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$headers = [
'X-Auth-Email: MYEMAIL',
'X-Auth-Key: MY-AUTH-KEY',
'Content-Type: application/json'
];
$data = json_encode(array("files" => "https://example.com/file/".$filename));
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$result = curl_exec($ch);
我得到的回应如下
{
"success":false,
"errors":[
{
"code":1012,
"message":"Request must contain one of \"purge_everything\" or \"files\", or \"tags"
}
],
"messages":[
],
"result":null
}
文档说标签是可选的,所以它应该可以工作
curl -X DELETE "https://api.cloudflare.com/client/v4/zones/023e105f4ecef8ad9ca31a8372d0c353/purge_cache" \
-H "X-Auth-Email: user@example.com" \
-H "X-Auth-Key: c2547eb745079dac9320b638f5e225cf483cc5cfdda41" \
-H "Content-Type: application/json" \
--data '{"files":["http://www.example.com/css/styles.css"],"tags":["some-tag","another-tag"]}'
这里做错了什么?
答案 0 :(得分:1)
我可能因为您的files
属性不是数组。
尝试
$data = json_encode(array("files" => array("https://example.com/file/".$filename)));
答案 1 :(得分:1)
这有点令人困惑。发布数据通常以密钥值对的形式发送
此外,当帖子数据是数组时,curl会将内容类型更改为multipart/form-data
当发布数据作为查询字符串发送时,其格式为key1=value1&key2=value2
看起来json是没有键的值。
我会尝试将它作为数组和字符串,然后查看请求标题 在请求标题中,查看内容类型和数据。
要在curl返回中获取请求标头,请添加以下选项:
curl_setopt($ch, CURLINFO_HEADER_OUT, true);
您可能需要添加:
curl_setopt($ch, CURLOPT_POST, true);
$data[] = json_encode(array('files'=>"https://example.com/file/$filename"));
curl_setopt($ch, CURLOPT_POSTFIELDS,$data);
$data = json_encode(array('files'=>"https://example.com/file/$filename"));
curl_setopt($ch, CURLOPT_POSTFIELDS,$data);
PS:你不需要使用。使用$filename