邮递员-提交令牌

时间:2019-09-13 13:40:46

标签: rest api curl postman

我是Postman的新手,(直到今天为止从未使用过它)

我希望此API请求通过Postman(漂亮的输出)运行

curl -X GET  http://localhost/api/myapi/subnets/ --header "token: token"

通过邮递员,我可以轻松获得此令牌:

http://localhost/api/myapi/user/

输出:

{
    "code": 200,
    "success": true,
    "data": {
        "token": "token",
        "expires": "2019-09-13 19:29:55"
    },
    "time": 0.013
}

但是我不知道如何将--header "token:token"部分传递给Postman

enter image description here

enter image description here

我尝试了Stack Overflow的一些建议,但似乎都没有用。

2 个答案:

答案 0 :(得分:1)

在标题部分,您可以添加所需的标题参数:

enter image description here

只需在“键”列中输入即可。

授权部分是添加通用“授权”标头的简便方法。所有其他标题都应在“标题”部分添加。

我图像中的请求与您的curl命令相同。

答案 1 :(得分:0)

在以下链接上找到它:https://www.quora.com/How-can-I-convert-cURL-code-to-Postman

http://localhost/api/myapi/subnets/?Authorization= token