remember-me Questions
6
Solved
I currently have to implement remember functionality for remembering my login info on my frontend website. How to implement remember me functionality for authentication in ReactJS when i only recei...
Fredericfrederica asked 15/12, 2020 at 3:31
4
i have a GWT application using Spring Security3.1.2 running in a tomcat 7. i am using UsernamePasswordAuthenticationFilter and PersistentTokenBasedRememberMeServices to persists logins on the DB. m...
Suckling asked 18/11, 2013 at 16:46
6
Solved
This chapter is on adding remember tokens to ensure that the user signin status is remembered and that the session is only cleared when the user explicitly signs out. I understand the importance of...
Klagenfurt asked 29/4, 2012 at 17:45
5
Solved
I am using Identity 2.1 in my MVC5 app.
I am setting the isPersistent property of the PasswordSignInAsync to true to enable 'Remember Me':
var result = await SignInManager.PasswordSignInAsync(mode...
Cardinal asked 5/1, 2015 at 23:0
3
I want to include "Remember Me" functionality on login page but I don't know its actual meaning (how its work). I have seen different uses at many websites but I didn't get its actual meaning.
Tepid asked 7/8, 2014 at 13:25
12
Solved
My web application uses sessions to store information about the user once they've logged in, and to maintain that information as they travel from page to page within the app. In this specific...
Unlade asked 30/8, 2009 at 21:50
13
Solved
Since this question is rather popular, I thought it useful to give it an update.
Let me emphasise the correct answer as given by AviD to this question:
You should not store any data that needs en...
Ellaelladine asked 3/3, 2009 at 12:18
5
Solved
I have created a sample Login form in C# Windows Form Application and what I want is to add Remember username or password feature to my login form.
I just need to provide my username, cause ...
Mae asked 21/9, 2012 at 23:29
2
I have a couple of problems with understanding Laravel remember me functionality.
What is the connection between remember me functionality and remember_me column in users table ?
Is there a timeo...
Maller asked 4/6, 2019 at 7:59
10
Solved
I have implemented remember me functionality in Symfony2. When I log in with remember me box checked, cookie named "REMEMBERME" gets created. That cookie is also available if I close browser and op...
Zoes asked 18/9, 2011 at 5:55
1
Solved
My SecurityConfig class where I configure remember-me feature backed by userService and persistenceTokenRepository():
@Override
protected void configure(HttpSecurity http) throws Exception {...
Takakotakakura asked 23/10, 2018 at 18:17
2
I have been using ASP.NET Identity 2.2.1. Following is the code in post method of VerifyCode action.
var result = await SignInManager.TwoFactorSignInAsync(model.Provider, model.Code, isPersistent:...
Cutler asked 22/6, 2015 at 12:36
4
Solved
Short
Working on login system and trying to implement remember me feature.
Recently, l did research about this subject, read bunch of articles, posts, stories, novels, fairy tales (calling them so,...
Melbamelborn asked 18/1, 2012 at 8:47
2
How can I reuse the original admin login() and AuthenticationForm to set longer cookie length for users with "remember me" option checked at login page? I am currently using the built-in login thro...
Ricarda asked 26/2, 2013 at 22:13
1
I'm experiencing a really weird issue with spring security.
The remember-me token seems to last for only one automatic login, after that, it stops working.
1. After login:
2. Then, I manuall...
Coom asked 12/4, 2018 at 19:19
1
Solved
I want to login a user after registration successfully. Currently the solution I found online is login a user in a session basis. But I need the "remember me" feature. My research lead me to the
...
Hakenkreuz asked 6/4, 2018 at 2:51
1
Solved
Following the guidlines of below tutorial I implemented remember-me functionality
http://www.baeldung.com/spring-security-remember-me
But when I run the program it throws java.lang.IllegalStateE...
Hummer asked 26/9, 2017 at 8:16
1
Solved
I'm using FOSUserBundle with email as username.
Tryin' to use the remember_me functionality but it's not working. I've read this Symfony2: "Remember me" tries to authenticate by username...
Urgent asked 23/5, 2017 at 15:8
4
Solved
Could somebody explain how you can manually create a remember me cookie in a controller?
I want the users to stay logged in after they pressed the "register"
button, without having to login with t...
Probative asked 22/1, 2012 at 18:27
5
Solved
While implementing the "remember me" feature for a website, why do we complicate things and have a token called remember me token apart from a session token.
To the best of my understanding, remem...
Opiate asked 15/3, 2011 at 16:29
3
Solved
I have an application with user authenticaton against database. The property I use is email:
providers:
administrators:
entity:
class: CorabMainBundle:User
property: email
Authentication w...
Tisiphone asked 21/10, 2013 at 22:0
2
Solved
I am using laravel 5 and angular js and JWT authentication for logging and registering my users. But there is nothing mentioned about to facilitate users with remember me functionality and also all...
Gregoire asked 25/9, 2015 at 13:21
4
I'm using a FOSUserBundle for authentication in Symfony2. Everything works fine except "remember me". My security.yml looks like this:
security:
providers:
fos_userbundle:
id: fos_user.user_mana...
Spoliation asked 27/12, 2011 at 21:19
2
I've got few questions about Shiro's remember me feature:
Why does Shiro generate different "remember me" token values for the same account on each login?
Would a hacker be able to generate a "re...
Rickets asked 29/10, 2014 at 19:42
3
Solved
I am creating some "Remember Me" functionality as part of logging in.
When I create a persistent cookie during the login process with the following:
FormsAuthentication.SetAuthCookie("someusernam...
Striated asked 7/10, 2011 at 0:18
1 Next >
© 2022 - 2024 — McMap. All rights reserved.