curl -k -X POST https://172.31.117.172/star_ring_web/api/assets/list -H "Access-Key: 54d454939e6fe53b" -H "Content-Type: application/json" -H "Secret-Key: 593bda47de926c16" -d {"current": 1,"data": {"sonTemplateId": "","confirm": "1","topQuery": "all","templateId": "637deccf960b447551a350c7","isActive": true,"query": { }},"pageSize": 10000} 参数有问题么
时间: 2023-07-24 08:14:57 浏览: 426
curl https://github.com/curl/curl.git
根据你提供的curl命令,参数的格式是正确的。然而,你的请求体中的JSON参数可能需要用引号括起来,以确保JSON格式的正确性。请尝试使用以下命令:
```shell
curl -k -X POST https://172.31.117.172/star_ring_web/api/assets/list -H "Access-Key: 54d454939e6fe53b" -H "Content-Type: application/json" -H "Secret-Key: 593bda47de926c16" -d '{"current": 1, "data": {"sonTemplateId": "", "confirm": "1", "topQuery": "all", "templateId": "637deccf960b447551a350c7", "isActive": true, "query": {}}, "pageSize": 10000}'
```
在上面的命令中,我对请求体中的JSON参数进行了引号括起来的修改。请注意,在JSON中,字符串应用双引号括起来。
确保你安装了curl,并在终端中执行修改后的命令。如果你仍然遇到问题,请提供更多详细信息或错误消息以便我更好地帮助你。
阅读全文