通过使用 curl 或 wget 的 API 调用从 Fastly CDN 清除 URL

Purge a URL from the Fastly CDN via API call with curl or wget

我使用 bash 脚本部署一个使用 Fastly 作为 CDN 的静态网页。部署 /example.html 后,我想通过 bash 脚本中的 API 清除 /example.html。我知道 Ruby gem 有好处,但我想在 bash 脚本中使用 curlwget 来完成。

如何使用 curlwget 通过 Fastly API 清除给定的 URL?

通过

curl -X PURGE http://www.example.com/image.jpg

正如他们在 docs.

中所解释的那样