postman从response headers里面获取返回的set-cookie参数,设置为全局变量

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了postman从response headers里面获取返回的set-cookie参数,设置为全局变量相关的知识,希望对你有一定的参考价值。

参考技术A //先获取响应头中的set-cookie字段

var jsondata = postman.getResponseHeader("set-cookie");

//打印

console.log(jsondata)

//设置全局变量

pm.globals.set("Cookie", jsondata);

在后面的用例需要用的时候,可以通过获取该全局变量进行测试

pm.globals.get("Cookie");

使用Postman 出现 Could not get any response

使用Postman 出现 Could not get any response

可以访问本地的localhost,但是访问服务器端就会出现如下图所示的情况:

解决办法:“Header”里面可能包含了一些特殊字符或空格等,删掉它!(如果需要Header,重新输入即可!)

以上是关于postman从response headers里面获取返回的set-cookie参数,设置为全局变量的主要内容,如果未能解决你的问题,请参考以下文章

如何从 Postman Response 下载附件

postman 请求接口Could not get any response(完美解决)

postman 请求接口Could not get any response(完美解决)

使用Postman 出现 Could not get any response

从数据库里python获取数据存到本地数据库

postman使用--添加headers授权cookies