Jeff, i think I have to explain better my self.

If you check against the UserService if the user is logged in ( 
http://code.google.com/appengine/docs/java/javadoc/com/google/appengine/api/users/UserService.html#isUserLoggedIn%28%29
 
) here you will have the trouble that I said to you, when the user logs out 
from another Google service will be loged out from your application too.

On the other hand you can store your own session variable after the user 
login with the UserService and in this case you wouldn't need to take care 
about what I said. 

But, in this case what can happen is that a Google User logins to your app 
with a Google Account (a...@gmail.com) and then logouts from gmail and login 
with another acount to gmail (b...@gmail.com). The Google user loged will be 
b...@gmail.com but you still will be working with a...@gmail.com

If you dont't care about this, store you own session variable after the user 
logins and voila'.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to