📌  相关文章
📜  如何在请求之间传递数据 - TypeScript 代码示例

📅  最后修改于: 2022-03-11 14:48:37.631000             🧑  作者: Mango

代码示例1
To pass data between requests in postman

I would use Enviroment or Global Variable
Lets say I want to pass my token between
requests. Than I would create empty global
variable and save the entire token response
as json and print the accessToken from 
response and set the value of global variable
to json field by writing like for example:

var responseJson = pm.response.json(); 
console.log( responseJson.accessToken  );
pm.globals.set("my_secret_token",  responseJson.accessToken );