Есть ли способ пересмотреть сам accessToken после того, как он был создан?
Глядя на код ниже, вы можете видеть, что $ token содержит accessToken для клиента «Test Token», и это нормально, он работает, как и ожидалось, однако, скажем, пользователь забыл, что $ token есть способ отобразить его для пользователь снова?
// user can manually create personal access token
// by using the following
$user = Auth::user();
$token = $user->createToken('Test Token')->accessToken;
// this works fine, however, I want to allow the user to edit / re-view these personal access
// tokens when he/she wants
// I'm able to delete or revoke these tokens but how can I vew the access token again?
// I tried the following:
foreach (Auth::user()->tokens as $token)
{
// but none of these give back that access token??
// halp!
// print "accessToken: " . $token->accessToken;
// print "token: " . $token->token;
}