使用POSTMAN REST客户端从用户登录会话的响应中获取“SessionId”。
如何将sessionId用于GET请求的其他API调用?
答案 0 :(得分:3)
对您的数据结构做一些假设,将其存储为变量:
//parse the response body as JSON
var data = JSON.parse(responseBody);
//create a global variable that can be reused in another call
postman.setGlobalVariable("sessionId", data.SessionId")
用于对另一个端点的调用:
http://www.example.com/ {{的sessionId}}