I’m building an app which should allow any user to setup and account using any email address. app-engine seems to only accept gmail.com addresses. is what i want to do possible and if so can anyone point me in the right direction? thanks!
Share
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.
The standard App Engine users API supports any Google account. Google accounts can be on any domain, not just gmail.com – here’s the create an account form. App Engine also supports OpenID, which allows users to sign in using any valid OpenID provider.
If you insist on developing your own login system, that’s possible too – you’ll need to use a session library such as Beaker to keep track of users once they’re logged in. I’d counsel against it, though – it’s a lot of work to get right, and requires your users to sign up to yet another account, instead of being able to use their existing accounts as OpenID and Google Accounts do.