HTTP身份验证等效于cURL用户名:密码

时间:2017-06-06 19:48:58

标签: http curl get postman

有没有办法将以下curl转换为普通的http请求?

curl --user <username>:<password> https://{username}.fred.sensetecnic.com/api/{custom_endpoint_name}

进入这样的事情(使用Postman获取http请求)

GET https://{username}.fred.sensetecnic.com/api/{custom_endpoint_name}

Headers: Username: username, Password: password

1 个答案:

答案 0 :(得分:0)

使用邮递员提供的Basic Auth

  1. 转到Authorization标签。
  2. 从类型下拉列表中选择Basic Auth
  3. 添加用户名和密码。
  4. 点击更新请求(如果适用)。
  5. enter image description here

    注意:为此,服务器必须接受json编码的凭据。

    1. 点击Headers
    2. 选择Content type
    3. 添加key-value对,用户名和密码

      enter image description here