ANP
ANP

Reputation: 15607

What are the information sent to the server in the http request

When a request is sent to the server from the browser for a web page what are the information sent to the server in the http request? Can we check those information?If yes how to do that?

Upvotes: 1

Views: 3424

Answers (3)

RPM1984
RPM1984

Reputation: 73132

Fiddler is the best for this (IMO)

You can save all requests in a particular session. Have it running in the background while you click away, then see what got sent over the wire. Replay requests, etc. The features go on and on.

Upvotes: 2

user180100
user180100

Reputation:

You can check that with Chrome using a right-click > inspect > ressources or under Firefox using Firebug.

Upvotes: 0

Jonathan Day
Jonathan Day

Reputation: 18692

Install Firebug and you can inspect the HTTP headers of both the request and response. That will work for either GET or POST requests. You can do the same with Fiddler for IE.

Upvotes: 2

Related Questions