Hello again !
I just want to clear out my curiosity. Please share your thoughts.
As far as i know, "remember me" feature is to help the user avoid typing in login username or email repeatedly.
Here's what i had tried:
1. formClient.addAuthorizationGenerator(new RememberMeAuthorizationGenerator<CommonProfile>());
2. <input type="hidden" name="rme" value="true" />
3. After login, i can see from the debug that the profile's isRemembered = True
So after that, the use of "remember me" is only on isFullyAuthenticated vs isRemembered authorizer, correct ? For example, i want to protect a resource that requires a fully authenticated profile, without isRemembered=True.
But when is the use case to use isRemembered ? For example, i want to protect a resource that has a profile with isRemembered=True ? Why would i need that ?
And if i were to help retain username information using "remember me" feature, how would i do that ? After a logout, it redirects to /login. How do i get the username to prefill for the user ?
Warm regards,
Albert Gan