views:

597

answers:

2

How to see the post content in chrome?

+2  A: 

One option would be to use a normal packet sniffer like wireshark.

bdonlan
Accepted or not, this answer seems to make more sense: http://stackoverflow.com/questions/1535462/debug-xhr-in-chrome-browser/1591333#1591333
bzlm
Agreed. Unfortunately, the answerer can't shift the accepted answer, only the questioner :)
bdonlan
+8  A: 

Start up the Developer tools (Shift+Ctrl+J on Linux) and click Enable Resource Tracking. The page will refresh. Click on the Resources button, XHRs are colored yellow. To see the post content simply click on the resource. The POST content is in the Request Headers. You can also filter out just the XHRs with the XHR button in the bar below the tabs.

Hope this helps,
d34dh0r53