I want to create API with OAuth 2.0 authentication.
Use Laravel Passport tutorial https://laravel.com/docs/6.x/passport.
Set up the configuration on config/auth.php:
'guards' => [
'web' => [
'driver' => 'session',
'provider' => 'users',
],
'api' => [
'driver' => 'passport',
'provider' => 'users',
],
],
When testing, I use a fresh token, but in response I get an error:
SQLSTATE[42703]: Undefined column: 7 ERROR: column "api_token" does not exist↵LINE 1: select * from "users" where "api_token" = $1 limit 1
Solution: clear the cache with command:
php artisan config:clear
Top comments (3)
Laravel 6.x Passport does not require adding the api_token column to the users table, there is no need to create a migration with adding the api_token column.
ohh man I was struggling with that, all the basic answers were "change the driver" but php artisan config:clear was the deal yoooo!!! thanx!!