Your users will also need to log into your app. http://code.google.com/appengine/docs/java/users/ http://code.google.com/appengine/docs/java/config/webxml.html#Security_and_Authentication
Robert On Wed, Jan 26, 2011 at 09:38, Debasish Mahato <[email protected]> wrote: > I want to create an application that would require the 3 different > google services ie picassa calendar and contacts > > String requestUrl = AuthSubUtil.getRequestUrl(((HttpServletRequest) > request).getRequestURL().toString(),"http://www.google.com/calendar/ > feeds/ "+"http://picasaweb.google.com/data/ "+"https://www.google.com/ > m8/feeds/", false, true); > > ((HttpServletResponse)response).sendRedirect(userService.createLoginURL(requestUrl)); > > With this I was able to authenticate and get a request token but after > this I unable to get user information > UserService userService = UserServiceFactory.getUserService(); > > userService.getCurrentUser() gives null . > > My problem is I am unable to to map the token to a user. > > -- > 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. > > -- 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.
