Siva Prasad
Siva Prasad

Reputation: 29

How to access response in body of POSTMAN

enter image description here

Hi guys,

i want to download an image from app.box i can get display of the image file in postman response(body). but it is not displaying in browser. how can i access that response image from postman

Upvotes: 2

Views: 1891

Answers (1)

MarcoS
MarcoS

Reputation: 17721

Click code on top right in Postman screen, then select cURL, Copy to Clipboard, paste into a terminal, and press Enter to execure the curl command (apt-get install curl if you don't have it...).

This will run the curl command postman is executing correctly, downloading the image...

Curl is available also for the windows platform, you can download it here: https://curl.haxx.se/windows/ ... And, run cmd to open a terminal in windows...

Upvotes: 2

Related Questions