I am running a website on local host (my mac, ip 127.0.0.1) and my
django dev server on a VM (some other ip eg. 192.168.56.1).
I load up the local host website, which 'emulates' the mobile app that
I will build using phonegap. I am issuing ajax requests from the
website to the django application residing in the VM.
The views that the requests are routed to are not csrf exempt. As
such, I issue a get request on the local website to try and obtain the
csrf token:
$.get('
http://127.0.0.1:8000/login')
In the response headers, the following is returned:
Set-Cookie:csrftoken=82c34b2495ad0c7f8a5fed67ca9a21bd; expires=Sat, 20-
Apr-2013 05:20:20 GMT; Max-Age=31449600; Path=/
However, this is unfortunately not found in document.cookie.
I would like to ask for advice on how I can get around this problems.
Thanks in advance,
Luther