I've used this tutorial to develop a simple REST service. What it takes is a string for username and then password. My plan was to simply send login info and an encrypted password using a HTTP request, and get a plain-text response saying something like "Success" to signify the log-in worked. However, I'm now reading that even with the password encrypted in some way, this is insecure.
Should I be using a RESTful @GET request for logging my users in? Could someone recommend a better way to do user log ins?