我正在努力尝试使用invoke-webrequest将以下curl请求转换为powershell:
curl -X PATCH "http://172.28.36.62:8080/api/3/http/upstreams/my-api/servers/5" -H "accept: application/json" -H "Content-Type: application/json" -d "{\"down\": false}"
消失并升级了 nginx,它使用具有不同命令的更高版本的 API,并努力将它们交换到 powershell。
假设您的 API 是 REST API,您可以使用
Invoke-RestMethod
PowerShell cmdlet: