Reputation: 13286
I'm am building a google app engine java based website. I want to allow in only users who are logged in to google. I chose Google Accounts API and went according to the instructions. however when a user is not logged in with google it takes him to this silly log in page where he can chose (!) his google accounts email - not very secure.
What am i doing wrong?
Upvotes: 2
Views: 383
Reputation: 5842
What you were seeing is the mock login page from Appengine sdk
on localhost which serves for testing purpose .. which just emulates google login . Unless until you deploy your application Your application can't use google login. After you deploy you will be taken to google's login page.
Upvotes: 6