使用正则表达式提取器实现接口关联
步骤一:使用postman工具找到第一个接口的需要鉴权的token名称和值
步骤二:
//使用正则表达式提取器实现接口关联,match进行匹配
var result = responseBody.match(new RegExp(' "token":"(.*?)" '));
console.log(result[1]);
//设置全局变量
pm.globals.set("token",result[1]);
步骤三:在第二个接口的请求参数栏填写需要关联的数据{{token}}调用即可