I followed this demo by implementing login using spring security and openid.
I successfully implement it, but using spring security, I have to provide user details in the section userservice spring-security.xml
<security:user name="http://krams915.myopenid.com/" password="" authorities="ROLE_USER, ROLE_ADMIN" />
I want to implement a registration and login cycle through openid at a time. I don’t understand how to go further without specifying the username in the user’s service, since the user who visits my site will not be registered earlier.
Any help or guidance would be wonderful.
Thanks at Advance.
source
share