直接复制浏览器请求,直接生成postman请求,省去复制粘贴headers、body的步骤
有时候我们想在 postman 重现浏览器上的某个请求(比如服务器上报错了,需要对该次请求调试),以往可能大家会把 url、参数、header 一个个地复制到 postman 里面,然后点 postman 的 send 发送请求。
chrome 有个很好用的功能是,把请求复制为 curl 格式,如下:
右键请求 -> copy -> copy as curl。
现在我们的粘贴板里面有个 curl 格式的请求,接下来我们打开 postman,点击左上角 Import,然后点 Paste Raw Text,然后点击 Import 完成导入。
这时候我们就把请求的完整信息复制到了 postman:
postman发送https请求报错:SSL Error: Unable to verify the first certificate
关闭Postman 证书的验证
在Settings-General中
关闭SSL certificate verification 就可以了