Practice
Upon receiving an HTTP request, along with the response the server can send a header
Cookies are usually remembered by the browser and sent in the value of the HTTP header
problem - the cookie is not sent back by the browser
in the image below you can debug the cookies, how they should work
in request 1, when the server responds, cookies are passed
these same cookies should be returned back by the client (browser) (2)
why might they not be returned back? because of this, for example, authorization might not work?

Comments