I have an app that retrieves and submits tickets back to a PHP server. Each user has to log into the PHP server from the app somehow. I've read a lot of different methods in doing this such as OAUTH 2.0, but my question is why it needs to be so complicated? Why can't I just add the username and password (md5 or something) to each HTTP request sent to the server? The server could check that before responding. How is this a security risk?
I'm not sending any sensitive information to and from the server.