In my web application, I do not have user registrations/login. What I have is the user account is automatically created when the user visits the site first time based on the cookie. How can I use Shiro for this purpose to authenticate such a user ( and also take advantage of its other web security features)?

If the user chooses to login via Facebook connect, then how can I use Shiro for this scenario?

link|improve this question

69% accept rate
feedback

2 Answers

Ad 1) I don't understand your scenario. Who will create the cookie if the user was never at your site? Normally you provide a login page (and a registration page if the user are not provided by your application) and once the user is authenticated you can use authorization headers or cookies.

Ad 2) Log in via Facebook connect. Facebook uses OAuth 2.0 (see also Server-Side Authentication). If you want to enable your site to use OAuth 2.0 then you have to follow the guide on the links above. OAuth support is not officially included in Shiro, however can be done. See SHIRO-21 and SHIRO-119 for an integration. This blog provides a two part solution to integrate Facebook login.

Alternatively you can use Spring security and Spring social, see Signing in with Service Provider Accounts.

link|improve this answer
feedback

A blog post on cookies in Shiro just came out. There's some very helpful sample code and some commentary that I am sure is great if you speak Korean (but google translate works okay).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.