如何使用PostMan Rest客户端使用SessionID

时间:2015-05-12 13:23:26

标签: api postman

使用POSTMAN REST客户端从用户登录会话的响应中获取“SessionId”。

如何将sessionId用于GET请求的其他API调用?

1 个答案:

答案 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}}