I'm publishing my first android app and I have doubts about security with the server.
I followed the tutorial to add security in the HTTP header using sha1, everything went well.
The problem is that the server has to know the password of the user, the client has to send it securely.
Do I have to configure the server with https for the first time the password is sent? should I always use https and forget about http headers?
Is there another secure alternative to https for secure password sending?
I am confused in these basic concepts ....
I need to introduce some security so that the url can not be used by others. It is not a user password, it is a unique string that I send to compare on the server and discard or accept future requests. Thank you.