如何使用 Postman 中的预请求脚本从另一个请求运行一个请求

How to run one request from another using Pre-request Script in Postman(如何使用 Postman 中的预请求脚本从另一个请求运行一个请求)
本文介绍了如何使用 Postman 中的预请求脚本从另一个请求运行一个请求的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试在邮递员中一键发送经过身份验证的请求.

I'm trying to send an authenticated request with one click in postman.

所以,我有一个名为Oauth"的请求和 我正在使用测试将令牌存储在一个局部变量中.

So, I have request named "Oauth" and I'm using Tests to store the token in a local variable.

var jsonData = JSON.parse(responseBody);
postman.setEnvironmentVariable("token", jsonData.access_token);

我现在要做的是为任何其他需要不记名令牌的请求自动运行 Oauth 请求(来自预请求脚本).

What I'm trying to do now is that run the Oauth request automatically (from a pre-request script) for any other requests which needs a bearer token.

有没有办法通过单击邮递员按钮来获取访问令牌并发送经过身份验证的请求?

Is there a way to get an access token and send an authenticated request with one postman button click?

推荐答案

正如 KBusc 所提到的并从这些示例中得到启发,您可以通过设置如下所示的预请求脚本来实现您的目标:

As mentioned by KBusc and inspired from those examples you can achieve your goal by setting a pre-request script like the following:

pm.sendRequest({
    url: pm.environment.get("token_url"),
    method: 'GET',
    header: {
        'Authorization': 'Basic xxxxxxxxxx==',
    }
}, function (err, res) {
    pm.environment.set("access_token", res.json().token);
});

然后您只需将 {{access_token}} 引用为任何其他环境变量.

Then you just reference {{access_token}} as any other environment variable.

这篇关于如何使用 Postman 中的预请求脚本从另一个请求运行一个请求的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)