如何在邮递员中访问重定向的url?

How can I access the redirected url in postman?

我有一个大问题。我正在向邮递员发送请求。然后, url 被重定向。我可以在 Postman 控制台中看到重定向的 url。但我无法从测试选项卡访问它。我需要访问重定向的 url 因为令牌是在这里生成的。我可以使用 JMeter 中的正则表达式提取器执行相同的操作。但是我不能在邮递员中做到这一点。我怎样才能在邮递员中做到这一点?你能帮帮我吗?

enter image description here

您可以关闭针对特定请求的重定向(切换自动跟随重定向):

然后您可以通过以下方式访问位置 header 内容: pm.response.headers.get('Location')

之后,您可以通过 sendRequest or saving the URL in a Postman variable and using setNextRequest 进行重定向 URL。