AbstractRemeberMeServices.java
private boolean alwaysRemember;
So, you'd have to wire up your RememberMeServices with alwaysRemember set to true.
I was playing around with Spring Security 3.1...
Type: Posts; User: x2Real; Keyword(s):
AbstractRemeberMeServices.java
private boolean alwaysRemember;
So, you'd have to wire up your RememberMeServices with alwaysRemember set to true.
I was playing around with Spring Security 3.1...
Thanks, it worked. I was over thinking things.
Thanks, I completely overlooked this. I'm going to test it tomorrow and let you know the results, but it should work.
I thought about this method but it appeared it would not work because the SignInAdapter interface has the following signature for the signIn method: String signIn(String userId, Connection<?>...
I solved this by making my own signin controller and calling the loginSuccess method of the TokenBasedRememberMeServices class.
Is it possible to have a remember me functionality with Facebook and Twitter login using Spring social?
I'm using Spring Social 1.0.0.RC2 and Spring Security 3.0.5.RELEASE.
Thanks