I am not using any kind of SSL and I am wondering the following:
If I have a list of api keys stored in my DB, and I force users who want to consume the API to do the calls with the following HTTP Header:
'Authorization: Token token="c576f0136149a2e2d9127b3901015545"'
And then I check if that token exists. Is it secure to put that in the HTTP header? If not, how could I secure it?
Thanks