Hi,
I don't know if this is the right place to ask question about OpenId, but here it is.
I am using
OpenId4Java to create an OpenId Provider. I have put the
sample code in a
servlet, and it is working fine.
I would like to know,
When I want to log-in to a site using my google account, I enter
https://www.google.com/accounts/o8/id in the openId url. After providing my credentials to Google, the openId url provided to the Relying Party by Google looks like:
https://www.google.com/accounts/o8/id?id=xxxxxxxxxxxxxxxxxx
My openId provider url is
http://localhost/myapp/openid.jsp
How can I add the user's name after a successful authentication, and send it to Relying Party so that the openId url of the user looks like this:
http://localhost/myapp/openid.jsp?user=xxxxxx
Thanks.