I'm trying to implement browser like cookie/session feature into my game for login system.
As far as I understand here is How cookies work;
1 - Client request page without cookie in requestheader.
2 - Server receives requestheader without cookie in it and generates cookie for client.
3 - Server responds without a cookie for first request.
4 - In further requests server includes cookie in header.
5 - Client copies cookie info from second respond and adds it into requestheader later on.
The problem is, I need to be able to send cookie at first request because in unity3d in every request SessionId for my client changes.
It doesnt act like a browser unless I include cookie in requestheader which I dont have at first request. So It gets stuck in between 1-3 steps.
UPDATE : Here is my experience in Chrome with following codeigniter code.
public function getcookie()
{
echo $this->input->get_request_header('Cookie', TRUE);
}
When I call this page which is: http://mydomainaddr.com/srv/index.php/Srv/getcookie It doesnt print anything at first request. When i refresh it starts printing...