IP: add support for 'remember me' functionality
See original GitHub issueI believe it requires adding support for firebase.auth().setPersistence()
to:
Reference: https://firebase.google.com/docs/auth/web/auth-state-persistence
Issue Analytics
- State:
- Created 6 years ago
- Comments:7 (2 by maintainers)
Top Results From Across the Web
"Remember me" feature based on ip address - Stack Overflow
Currently the way my server "remembers" users is based solely on the IP address they have logged in from. If they check the...
Read more >How to Securely Implement a "Remember Me" Feature?
A user must enter a user name and password · The database stores usernames as well as strong_hash_function(password + user_specific_random_salt) ...
Read more >Remember Me in IP Range | Drupal.org
This module is for providing an option to the users that the user will be remembered with his Login if he is logged-in...
Read more >Protecting Windows login: "remember me" for a day - Devices
The one feature that is sorely missing is the existence of a “remember me” feature for Windows login. The same is true for...
Read more >How to Add "Remember Me" Login Functionality (Symfony Docs)
How to Add "Remember Me" Login Functionality · Activating the Remember Me System. Always activating Remember Me · Add Remember Me Support to...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Keen on seeing this functionality as well. Currently, after the user logs in, as expected the
getAuthToken()
returns a valid token. If the user switches to another app and after an hour switches back to our app, the the getAuthToken() still returns a token but it’s already expired.@r0zar let me know if I can help you out somehow.
I’ll look into the docs on events related to closing apps. Possibly build a service around that.