-
First let me say thank you to you and all who have assisted for your time and effort on this project. It is better that the custom inventions of the wheel that I previously used. In trying to implement access token authentication for APIs I have some questions which I hope I can get help.
// Retrieve a single token by plain text token
$token = $user->getAccessToken($rawToken); Seems like that would mean the User would have to send credentials each time before the token lookup. If that is the case, what is the use of the access token? I have extended the
Thanks again, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
See TokenAuth filter: shield/src/Filters/TokenAuth.php Line 35 in b7b6720
The access token is the credential.
Where is the docs? |
Beta Was this translation helpful? Give feedback.
-
It seems you are confusing a user's view and a developer's view. By the way what do you want to do? |
Beta Was this translation helpful? Give feedback.
See TokenAuth filter:
shield/src/Filters/TokenAuth.php
Line 35 in b7b6720
The access token is the credential.
Where is the docs?