How can I debug a HTTP POST in Chrome?
- Go to Chrome Developer Tools (Chrome Menu -> More Tools -> Developer Tools)
- Choose "Network" tab
- Refresh the page you're on
- You'll get list of http queries that happened, while the network console was on. Select one of them in the left
- Choose "Headers" tab
Voila!
You can filter for HTTP POST requests with the Chrome DevTools. Just do the following:
- Open Chrome DevTools (Cmd+Opt+I on Mac, Ctrl+Shift+I or F12 on Windows) and click on the "Network" tab
- Click on the "Filter" icon
- Enter your filter method:
method:POST
- Select the request you want to debug
- View the details of the request you want to debug
Screenshot
Tested with Chrome Version 53.