如何将curl URL转换为POSTMAN请求

时间:2018-07-03 06:07:52

标签: json postman

我有一个successfully run with terminal的curl链接,但我想将其转换为POSTMAN请求(链接在哪里)

curl -H "Content-type:application/json" -X POST -u ApiUserAdmin:1234 http://10.20.10.50/API/TaskHandle -d "{\"event\":\"evening\",\"wish\":\"Good Evening\"}" &

当我导入它时,它会给出

  

导入Curl时出错:找到2个无选项的参数。仅支持一个(URL)   当我手动将其转换时,   enter image description here   和标题就像   enter image description here

然后它给出了错误, enter image description here

  

我该如何解决ApiUserAdmin和密码。   预先感谢。

1 个答案:

答案 0 :(得分:0)

您似乎将用户名/密码放在错误的位置。将其从邮递员的“标题”选项卡移动到“授权”选项卡。尝试从“类型”下拉列表中选择“基本身份验证”,然后在显示的字段中输入用户名/密码。