使用 cloudflare 的身份验证错误 api

Authentication error using cloudflare api

我在使用 Cloudflare api 时反复收到类似 this 的身份验证错误(不是我)。

curl -X GET "https://api.cloudflare.com/client/v4/zones/<ZONEID>/dns_records?type=A&name=<DOMAIN>&content=127.0.0.1&proxied=undefined&page=1&per_page=20&order=type&direction=desc&match=all" \
 -H "X-Auth-Email: <EMAIL>" \
 -H "X-Auth-Key: <APITOKEN>" \
 -H "Content-Type: application/json"

 {“success”:false,“errors”:[{“code”:10000,“message”:“Authentication error”}]}

我做错了什么?

显然唯一可行的方法是使用用户令牌而不是区域一。

curl -XPOST -H 'X-Auth-Key: TOKEN' -H 'X-auth-email: EMAIL' -H \"Content-type: application/json\" -d '{\"type\":\"CNAME\",\"name\":\"hi\",\"content\":\"example.com\",\"proxied\":true}' 'https://api.cloudflare.com/client/v4/ZONE_ID/dns_records'