How can I post data as form data instead of a request payload?

In the code below, the AngularJS $http method calls the URL, and submits the xsrf object as a “Request Payload” (as described in the Chrome debugger network tab). The jQuery $.ajax method does the same call, but submits xsrf as “Form Data”. How can I make AngularJS submit xsrf as form data instead of a … Read more

How to manually send HTTP POST requests from Firefox or Chrome browser

I want to test some URLs in a web application I’m working on. For that I would like to manually create HTTP POST requests (meaning I can add whatever parameters I like). Is there any functionality in Chrome and/or Firefox that I’m missing? 1 17 I have been making a Chrome app called Postman for … Read more