Home > OS >  Postman Response Body "message" disappear
Postman Response Body "message" disappear

Time:02-25

I am currently learning RESTFUL web service tutorial using postman software. However, I am not able to see the error message detail that was shown in my tutorial. May I know how can I get the "message" to be display in postman response body? Thank you.

enter image description here

Below show the example from my tutorial. enter image description here

CodePudding user response:

Whatever backend framework you are using look for the Environment Debug variable and set it to true if you are using laravel go to env file and set APP_DEBUG=true

  • Related