Postman: You Need to Enable Javascript to Run This App
I've Got a New Api from the Backend Team in a New Project, When I Call the Api It Returns "You Need to Enable Java. ..", Whereas I Had Used Postman for Another...
I've got a new API from the backend team in a new project, when I call the api it returns "you need to enable java...", whereas I had used Postman for another project before... is it related to api, server or something else?
2 Answers
I spent some times pondering on this trepidation.. and then suddenly i realized what was going on..
- the endpoint does not exist, it could be a misspelling
- not in the same directory as you expect it to be,
try adding or removing "/" at the beginning of the url, particularly if you don't specify the hostname, i.e.
fetch('getusername')is different fromfetch('/getusername'). . This acceptable in development but NOT when already deployed, it points to different path. - the endpoint may be working fine in the Development, but somewhere within in the Production/Staging, it generated some exception.
I don't think that POSTMAN is capable of executing JavaScript in its console. Try doing the same in the web browser it will work (You won't see this error message).