How can i simulate REST post request with json data in browser
javascript, json, php, rest, symfony
Solution
If you are using Google Chrome you can use the Postman Extension. It allows you to send pretty much any type of data and see the results.
Problem
I have the web application where the frontend is in `ExtJS` and backend is in `PHP`. The forms are build in Extjs and its making PUT and POST request to server for saving data. The josn data is posted like this ``` {"id":"101","description":"user1","active":true} ``` Now for debugging i would like to directly call this `URL` in `browser` so that i can use `var_dump` for helpful messages. As the request is AJAX by Extjs , so its very difficult to see messages through firebug. Is there any way to make this request from browser and see response in rendred html. I don't want to make form.