在 Laravel 中,有没有办法删除旧的已撤销/过期的护照令牌

Ani*_*mar 4 php oauth-2.0 laravel laravel-passport

我正在使用 Laravel 通行证进行 API 实现,当用户登录该站点时,它会创建一个新令牌,旧令牌将被撤销,因为此记录每天都在增加..

有没有办法删除护照过期的令牌?

提前致谢。

ITD*_*.eu 8

Laravel 风格

我们将使用命令清除已撤销和过期的令牌:

<?php

namespace App\Console;

class Kernel extends ConsoleKernel
{
    protected function schedule(Schedule $schedule)
    {
        $schedule->command('passport:purge')->dailyAt('03:00');
    }
}
Run Code Online (Sandbox Code Playgroud)