I am using Laravel's passport package to provide token based authentication to my rest api. Right now, I am using personal access token concept to generate the access token.
To generate an access token for a single user, I am using below code to generate a token with name 'android'.
$user = User::create([
'name' => $data['name'],
'email' => $data['email'],
'password' => bcrypt($data['password']),
]);
// Here the access token will be stored in $token variable.
$token = $user->createToken('android')->accessToken;
// Now the $token value would be something like
//eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6ImMyNjI3YzU0YjFhNWIxZTFlMTdkODhmZTk1NzhjNzAzY2QyMTU0MzhlOD...
Later on I want to display the personal access token on my admin dashboard which I am facing difficulty in getting the generated token again. Tried below code, but couldn't able to get the access token.
$user = User::find(1)
dd($user->tokens())
I also tried using passport vue elements, but it is displaying just the access token name, not the actual token.
<passport-personal-access-tokens></passport-personal-access-tokens>
Please help me getting this solved.
Thank you
You can't retrieve
access_token
directly. Because, when you create access token$token = $user->createToken('android')->accessToken;
, Laravel Passport will createaccess_token
and it is not directly store into database. Instead, it is store thataccess_token
's id(called Json Token Id) intooauth_access_tokens
table.So, when you search
access_token
directly inoauth_access_tokens
table, you will never find thataccess_token
, only you can see itsJson Token Id
.