My code on the server is
if(userPrincipal != null){
String name = userPrincipal.getName();
site.setNickName(name);
site.setLoginLogOutURL(userService.createLogoutURL(thisURL));
site.setLoggedIn(true);
}else{
site.setNickName("Guest");
site.setLoginLogOutURL(userService.createLoginURL(thisURL));
site.setLoggedIn(false);
}
The Problem is that the URL takes me to the custom Google Apps Login
page instead of the standard google accounts login page.
i.e for a domain xyz.com - it takes me to google apps login page for
xyz.com.
Do I need to do something different??
--
You received this message because you are subscribed to the Google Groups
"Google App Engine for Java" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine-java?hl=en.