您可以在不使用 curl 的情况下使用例如 nc 或 wget 发出 http 请求吗? (忙碌的盒子)

Can you make a http request using for example nc or wget without curl? (Busybox)

我目前正在 Kubernetes Pod 中使用一个 busybox,并且想让这个容器(busybox)运行 像这样的 http 删除请求:

while true; do curl -X DELETE https://blabla.com/api/v1/messages; sleep 604800; done

由于 curl 不起作用(在图像中不可用)但 nc 和 wget 会起作用,在这种情况下是否有使用它们的好方法?

Wget:

 wget --method=DELETE https://blabla.com/api/v1/messages

在 stdout 中获取结果,就像在 curl 中一样

wget -q -O - --method=DELETE http://localhost:8080