Hi,
First off David, thank you very much for contributing this work to the
community. It's very very useful.
I'm working on a openid integration and have tested successfully with
Google, Yahoo, and ClaimID.
However, I'm not seeing any SReg info coming back from Yahoo. I've
checked out the demo app from svn and run that locally and verified
the same behavior. However, your app deployed at GAE/J is behaving a
bit differently.
I have registered the listener in my app:
static {
RelyingParty.getInstance()
.addListener(new SRegExtension()
.addExchange("email")
.addExchange("country")
.addExchange("language")
).addListener(new AxSchemaExtension()
.addExchange("email")
.addExchange("country")
.addExchange("language")
));
}
I look for that data after a successful login. SReg data is coming
back from ClaimID, but not Yahoo.
Your app at:
http://dyuproject.appspot.com/openid
appears to work properly. When I'm on the Yahoo auth page it
indicates that my email address will be sent back. Neither my app,
nor the demo app in svn show this behavior.
I'm using the 1.1.6 release -- should I try using the code in trunk?
or is there some configuration that needs to be done to enable this?
thanks
-- James