使用邮递员使用标题发送请求 - 不确定要发送什么

时间:2018-02-13 14:54:03

标签: http-headers postman

我正在尝试使用API​​,说明如下:

To send authenticated requests, provide the client_id and client_secret values as a base64 encoded HTTP Authorization header.

curl --user {YOUR_CLIENT_ID}:{YOUR_CLIENT_SECRET} https://www.somewebsite.com/api-2.0/something

我发送的请求是这样的:

enter image description here

我做错了什么?

1 个答案:

答案 0 :(得分:0)

使用Basic Auth标签中的Authorization。如果您将这些详细信息添加为用户名/密码,它将为您创建Base64编码标头并将其添加到请求中。

Postman

header将如下所示:

Postman_02