[Solved] Postman not working on Ember with back-end JSON API


As figured out in comments you were messing up Postman with developer tools of browser.

While Postman is great to debug and test REST APIs, it can’t be used to inspect single page applications (SPA) running in browser window. Postman is it’s own application and does not interfere with your ember.js web application which is running another task.

To inspect a single page application (or other websites) the developer tools which are provided by all major browsers are very helpfull. These ones are shown in the video you have mentioned in comments. They have a network tab listing all requests fired. Here you find a detailed description of Google Chrome’s network tab in developer tools. The other browsers share most of the features.

So to put it together: To investigate what network requests are fired by your single page application (e.g. ember.js) use the network tab of browser’s developer tools. If you need to investigate your API behavior more in detail (e.g. to see why a network request of your SPA fails), Postman is a great tool to do this.

solved Postman not working on Ember with back-end JSON API