I've built a couple of basic django projects and would now like to add User Authentication and SSL.
The objective is to be able to securely send data to/from a WIFI module (ATWINC1500) <=> Django's database through normal http channels (no need for anything fancy).
Can user login be compressed into the same http GET data or POST data? Or must one perform a login before afterwards sending the GET/POST?
Will the user session remain open afterwards and, if so, for how long?
Would anyone explain the steps involved?
Any observations welcome!