编辑

编辑

我有一个在 RedHat 7.3 上运行的 cURL 命令,如下所示:

curl -X POST https://myserver:443/ -H 'cache-control: no-cache' -H 'content-type: application/json'-d '{ "action": "test", "ipaddress": "192.168.1.1", "value": "false", "environment": "myrealm" }' --insecure

我现在需要在 AIX 7100 上执行相同的操作。到目前为止,我已经

curl -X POST -d '{ "action": "test", "ipaddress": "192.168.1.1", "value": "false", "environment": "myrealm" }' https://myserver:443

但是我仍然收到错误

You can only select one HTTP request!

当我放下它时,-X POST它会运行,但不再执行 POST,它只是挂在那里,直到取消。有谁知道如何在 AIX 计算机上运行第一个 cURL 命令?

提前致谢!

编辑

我现在可以建立连接了,我该如何处理

--不安全

在AIX 中?该选项似乎不存在。

相关内容