Hi all,
I am making a bookmarklet where I need people to login first. My question is how do I send login credentials to the django server from a different domain?
I was thinking there were a couple ways, since I can't use send data via request.
Generate the sha1 algo on the client-side...but then how do I know what Django is salting with and how can I make that secure?
Find a way to send some post data to my server from a different domain.
Any other ideas/implementations?
Much appreciated