Feature Request
Capture POST content when posting as application/json
Tomas Kirda
When posting data to .NET app via ajax as JSON, we would like to be able to see what data was posted:
$.ajax({
type: 'POST',
contentType: 'application/json',
data: JSON.stringify(data)
dataType: 'json'
});
This data would make so much easier to resolve the issue.