jacobsome
jacobsome

Reputation: 139

Authentication mechanism in Android?

I am not basically an android developer. I am a dot net developer, If someone provides me some details on

How to authenticate and manage the user credentials with android apps.

consider the bellow.

Can someone give some guidelines ?

Upvotes: 1

Views: 1022

Answers (2)

mayank_droid
mayank_droid

Reputation: 1015

I have user credentials in SQL database. How to authenticate the user

For giving Signin functionality mostly username and password are sent in Base64 String for security. I dont know how they are done on server side but we generally do like this to authenticate user credentials and web service returns response like id of that user. Try this link

How to manage the remember password for the later usage.

This is what you will need for that SharedPreferences

check this question:

how to implement Remember me function in login of android Activity?

Upvotes: 1

user1480455
user1480455

Reputation:

Designing for Security. Have a look at here

Upvotes: 0

Related Questions