bsed / gorilla

Automatically exported from code.google.com/p/gorilla
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

Session ID passing via URLs / forms #56

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
My target users often don’t have cookies enabled in their browsers, but my 
web application uses sessions (with the filesystemstore). Instead of handing 
out session IDs via cookies, it would be acceptable to do that via URLs, like 
PHP supports: http://php.net/manual/en/session.idpassing.php

As far as I can tell, gorilla does not support that yet. Also, there seems to 
be no way to start a session if I were to implement the SID passing on my own, 
correct (that is, I always need to pass an http.Request to gorilla)?

Original issue reported on code.google.com by mstpl...@gmail.com on 13 Nov 2012 at 8:30