Tokens saved on auth_identities table #967
-
I Have a few questions
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
You can ignore the Authorization tokens are long lived identifiers that serve a different use case then session based authorization, and can have a different set of permissions tied to it. The best way to look at is like GitHub. When you log into GitHub you are using a session-based authorization. But when you want to use their API you need to generate a Personal Access Token. The token can be regenerated at any time without affecting your ability to log into the system. |
Beta Was this translation helpful? Give feedback.
You can ignore the
extra
field 9/10 times. It's there in case the authorization library needs to save a bit of other information to work correctly.Authorization tokens are long lived identifiers that serve a different use case then session based authorization, and can have a different set of permissions tied to it.
The best way to look at is like GitHub. When you log into GitHub you are using a session-based authorization. But when you want to use their API you need to generate a Personal Access Token. The token can be regenerated at any time without affecting your ability to log into the system.