1.重定向api测试需要先关闭postman的自动重定向功能
2.获取请求头返回数据
需要获取的数据:
获取code值
// 查看location是否存在 pm.test("Location is present", function () { pm.response.to.have.header("Location"); }); // 获取请求头参数 var a = postman.getResponseHeader('Location') // 从a中提取需要的数据:match中输入对应的正则表达式即可 var temptoken = a.match(/code-.*/); // 将提取出来的值设置为全局变量 pm.globals.set("variable_key",temptoken);
截取效果: