Umbungu
Umbungu

Reputation: 975

Seeing cookies in HTTP requests/responses

I want to debug what cookies (Set-cookie) I am sending as part of an JavaScript XMLHttpRequest and the cookies received in the corresponding response object. Is there any way to do this?. I want to look at the request/response objects directly instead of checking document.cookie or using the JQuery cookie plug-in.

I've tried looking in Chrome web inspector but I've had no luck.

Upvotes: 2

Views: 1657

Answers (4)

MaVRoSCy
MaVRoSCy

Reputation: 17839

You can see cookie values also in Firebug console in Firefox.

Just install the plugin and press F12 to access it

enter image description here

Upvotes: 2

Nitin Agrawal
Nitin Agrawal

Reputation: 1361

In ur chrome, press F12 go to resources tab, expand cookies and see data in the cookie. See below cookies from facebook.com

enter image description here

Upvotes: 1

Arun
Arun

Reputation: 582

Try using HTTP Analyzer .

You just start it and access your website and it captures all the requests and responses.

Plus it ain't browser specific captures data from all browser requests and responses.

Upvotes: 1

Quentin
Quentin

Reputation: 943556

They'll show up in the Net tab of the Chrome Developer tools.

Upvotes: 1

Related Questions