我正在尝试使用Windows cmd
提示符发送curl POST请求。下面是代码示例:
curl -i -X POST
https://localhost:4119/api/sessions
--insecure
-H Cache-Control:no-cache
-H Content-Type:application/json
-H api-version:v1
-c cookie.txt
-d '{
\"userName\":\"username\",
\"password\":\"password123!\"
}'
我正在使用\
对字符串中的"
进行转义。
curl
返回的错误是:(6)无法解析主机:“密码”
该示例出了什么问题?
使用: