grails spring-security with facebook and remember me

321 Views Asked by At

I have a grails 2.2.3 project which authenticates with spring-security-core (1.2.7.3) and spring-security-facebook (0.14.5). For rememberMe functionality i have the following in my Config.grooy:

grails.plugins.springsecurity.rememberMe.alwaysRemember=true
grails.plugins.springsecurity.rememberMe.cookieName="myRememberMeCookieName"
grails.plugins.springsecurity.rememberMe.key="myRememberMeKEY"

When logging in with username/password on the "/login/auth" page the myRememberMeCookieName Cookie is created and works correctly. But after successfully logging in with Facebook no myRememberMeCookieName Cookie is created. I use Server Side Authentication type: FacebookAuthRedirectFilter.

How to enable rememberMe functionality when logging in with spring-security-facebook?

0

There are 0 best solutions below