postman下载字节流_Postman如何保存接口返回的文件流?

最近在测试文件下载的接口,但是发现直接用 Postman 调用接口后,返回的是二进制文件流

最近在测试文件下载的接口,但是发现直接用 Postman 调用接口后,返回的是二进制文件流:

那么 Postman 如何将接口返回的文件流下载下来呢?

官方文档有说明:

If your API endpoint returns an image, Postman will detect and render it automatically. For binary response types, you should select “Send and download” which will let you save the response to your hard disk. You can then view it using the appropriate viewer. This gives you the flexibility to test audio files, PDFs, zip files, or anything that the API throws at you.

在 Send 按钮那里可以选择 Send and download

点击后,接口正常的话,会弹出文件保存弹窗,如果知道文件类型,直接修改为对应的后缀即可。

你可能感兴趣的:(postman下载字节流)