Replies: 1 comment 2 replies
-
Me, I extends the AuthStrategy and add any kind of key to the user's object on login. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
On the web, it's accepted that a session may expire and the user will have to log in again. With native mobile apps, the expectation (for the most part) is to log in once and stay logged in unless the user explicitly logs out, or the token is blacklisted.
I'm curious how you guys (Feathers users in general) handle these scenarios? How are you handling authenticated service calls outside of, or with, JWT? Do you use a modified version of the standard authentication? I realize you can set a token to never expire, but that feels like a significant security issue.
tl;dr
How do you guys handle auth on native apps that expect you to sign in once, with or without JWT?
Beta Was this translation helpful? Give feedback.
All reactions