Hi,
did you manage to get this working?
I'm thinking about switching from my (working) step2 implementation to
app engine OpenID support.
Is logout working properly?
The warning seems to be removed from the docs.

Daniel

On Nov 30, 12:38 pm, AmaltasCoder <[email protected]> wrote:
> I am using OpenID with GAE (Experimental - Federated Login). I don't
> get prompted for user/password when I hit logout and then hit login
> back again. Can someone please let me know what the problem is?
>
> I use the following code to create my login url's:
>
> UserService userService = UserServiceFactory.getUserService();
> HashSet<String> attributeRequestSet = new HashSet<String>();
> attributeRequestSet.add("openid.ns.pape=http://specs.openid.net/
> extensions/pape/1.0");
> attributeRequestSet.add("openid.pape.max_auth_age=0");
> String loginUrl = userService.createLoginURL(destinationUrl,
> "gmail.com", "gmail.com", attributeRequestSet);
>
> and code for my logout url's:
>
> UserService userService = UserServiceFactory.getUserService();
> User user = userService.getCurrentUser();
> String logoutUrl = userService.createLogoutURL(destinationUrl,
> user.getAuthDomain())

-- 
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.

Reply via email to