<tfoot id='hJjW9'></tfoot>
      1. <legend id='hJjW9'><style id='hJjW9'><dir id='hJjW9'><q id='hJjW9'></q></dir></style></legend>
          <bdo id='hJjW9'></bdo><ul id='hJjW9'></ul>

      2. <small id='hJjW9'></small><noframes id='hJjW9'>

      3. <i id='hJjW9'><tr id='hJjW9'><dt id='hJjW9'><q id='hJjW9'><span id='hJjW9'><b id='hJjW9'><form id='hJjW9'><ins id='hJjW9'></ins><ul id='hJjW9'></ul><sub id='hJjW9'></sub></form><legend id='hJjW9'></legend><bdo id='hJjW9'><pre id='hJjW9'><center id='hJjW9'></center></pre></bdo></b><th id='hJjW9'></th></span></q></dt></tr></i><div id='hJjW9'><tfoot id='hJjW9'></tfoot><dl id='hJjW9'><fieldset id='hJjW9'></fieldset></dl></div>

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

        时间:2023-10-20
        <i id='lxhqw'><tr id='lxhqw'><dt id='lxhqw'><q id='lxhqw'><span id='lxhqw'><b id='lxhqw'><form id='lxhqw'><ins id='lxhqw'></ins><ul id='lxhqw'></ul><sub id='lxhqw'></sub></form><legend id='lxhqw'></legend><bdo id='lxhqw'><pre id='lxhqw'><center id='lxhqw'></center></pre></bdo></b><th id='lxhqw'></th></span></q></dt></tr></i><div id='lxhqw'><tfoot id='lxhqw'></tfoot><dl id='lxhqw'><fieldset id='lxhqw'></fieldset></dl></div>
        <tfoot id='lxhqw'></tfoot>

        <small id='lxhqw'></small><noframes id='lxhqw'>

            <legend id='lxhqw'><style id='lxhqw'><dir id='lxhqw'><q id='lxhqw'></q></dir></style></legend>
              <tbody id='lxhqw'></tbody>

                • <bdo id='lxhqw'></bdo><ul id='lxhqw'></ul>
                  本文介绍了如何使用 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 中的预请求脚本从另一个请求运行一个请求的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:"无法发送请求Postman Web 版本中的错误 下一篇:如何在 PostMan 的预请求脚本中计算 md5 哈希?

                  相关文章

                    <bdo id='sokEe'></bdo><ul id='sokEe'></ul>

                  <small id='sokEe'></small><noframes id='sokEe'>

                • <tfoot id='sokEe'></tfoot>

                      <legend id='sokEe'><style id='sokEe'><dir id='sokEe'><q id='sokEe'></q></dir></style></legend>

                    1. <i id='sokEe'><tr id='sokEe'><dt id='sokEe'><q id='sokEe'><span id='sokEe'><b id='sokEe'><form id='sokEe'><ins id='sokEe'></ins><ul id='sokEe'></ul><sub id='sokEe'></sub></form><legend id='sokEe'></legend><bdo id='sokEe'><pre id='sokEe'><center id='sokEe'></center></pre></bdo></b><th id='sokEe'></th></span></q></dt></tr></i><div id='sokEe'><tfoot id='sokEe'></tfoot><dl id='sokEe'><fieldset id='sokEe'></fieldset></dl></div>