Hi,
GWT + GAE 1.6.3 project
I am using UserService as follows
UserService userService = UserServiceFactory.getUserService();
User user = userService.getCurrentUser();
if(user !=null || userService.isUserLoggedIn()) {
return user.getEmail();
}else if(user == null || !userService.isUserLoggedIn()) {
return userService.createLoginURL(userService.createLoginURL("
http://www.yatrafinder.com"));
}
It works fine in development mode but in production,
after user login it redirects the application to google.com instead of
redirecting to the given url - http://www.yatrafinder.com
Can someone tell me why it is happening like this ?
Thanks
Deepak Singh
--
You received this message because you are subscribed to the Google Groups
"Google App Engine" 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?hl=en.