I know there are some examples for SSO using fb, but i like to create a parent app which can be used to sign in for all of my child apps; Any idea??
Thanx in advance 🙂
How to generaye my custom API key for my child apps for using my parent app???
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Just to put my comments in an answer :
To avoid workload on the user side, and having to create yet another login/password pair, try using the existing account registered on the device, using the AccountManager.
The user will only have to select an account he is already logged into, and you can transparently use it to create an account in your service.
Another advice would be too hash and salt the data you’re using to avoid sending private data in the clear.