I'm working on an android project that gets the students marks from the website.
How to send the user name and the password securely? (I need some codes)
If I use the sharedpreferences to save the user name and the password, is that secure?
Note:
- I have no access to the database (the web developer will print the data in the web page
<a herf="http://saif-test.zxq.net/subject.php?name=2013"> example </a>
). User name and password will send like"www.example.com/marks?user=myusername&pass=password"
or UrlEncodedFormEntity(data) and the app handled the received data. - The website has SSL connection
Thank you.