Curl不接受-X参数

时间:2017-08-24 21:23:32

标签: curl bitbucket-server

运行此curl命令:

curl -u user:pass -X POST -H "Content-Type: application/json" https://localhost:7990/rest/api/1.0/projects/fw/repos

失败了:

bash: -X: command not found $ curl: no URL specified!

此命令之前有效,所以我不知道出了什么问题。

1 个答案:

答案 0 :(得分:2)

看起来你的用户名中有一个特殊字符,或者更可能是密码。尝试在凭据周围使用单引号,如下所示:

curl -u 'user:pass' -X POST -H "Content-Type: applicat.....