我在尝试对可ping URL进行POST调用时遇到curl: (55) Failed sending HTTP POST request
错误。
$ curl -v POST \
https://myhost.com/page \
-H ': application/json' \
-d '{
"api_key": "1234"
}'
答案 0 :(得分:1)
''
就我而言,从剪贴板复制时,请求标头之一错过了它的密钥。
$ curl -v POST \
https://myhost.com/page \
-H ': application/json' \ . <<----
-d '{
"api_key": "1234"
}'
答案 1 :(得分:0)