Tokens saved on auth_identities table #967
|
I Have a few questions
|
Answered by
lonnieezell
Nov 30, 2023
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. |
3 replies
Answer selected by
kairiex2
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can ignore the
extrafield 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.