Install Laravel Passport and run migration and key generation commands; 2. Introduce HasApiTokens trait in the User model; 3. Register Passport routes in AuthServiceProvider; 4. Configure the API authentication guard to use the passport driver; 5. Distribute tokens through personal access tokens or password grant types; 6. Use the auth:api middleware to protect API routing; 7. Optionally configure token scopes to implement permission control; 8. Handle the refresh of access tokens to obtain new tokens; 9. Support token revocation for enhanced security; 10. Correctly configure CORS and adopt stateless authentication to ultimately implement a safe and reliable API authentication mechanism.
Handling API authentication in Laravel using Laravel Passport is straightforward once you understand the flow. Passport gives you a full OAuth2 server implementation out of the box, making it ideal for securing APIs, especially when building SPAs, mobile apps, or third-party clients.

Here's how to set up and handle API authentication with Laravel Passport:
1. Install and Setup Laravel Passport
First, install Passport via Composer:

composer requires laravel/passport
Then, run the migrations to create the necessary tables (clients, tokens, etc.):
php artisan migrate
Next, generate the encryption keys needed to generate secure access tokens:

php artisan passport:install
This command creates personal access and password grant clients and their encryption keys.
?? Note: In production, never commit the keys generated by
passport:install
. Usephp artisan passport:keys
if you need to regenerate them on the server.
2. Configure Your User Model
Your User
model must use the Laravel\Passport\HasApiTokens
trait:
use Laravel\Passport\HasApiTokens; class User extends Authenticatable { use HasApiTokens, Notifiable; }
3. Register Passport Routes
In AuthServiceProvider
, boot Passport and register its routes:
use Laravel\Passport\Passport; public function boot() { $this->registerPolicies(); Passport::routes(); }
These routes handle token issue and revocation.
4. Configure API Authentication Guard
Ensure your api
guard in config/auth.php
uses the passport
driver:
'guards' => [ 'api' => [ 'driver' => 'passport', 'provider' => 'users', ], ],
5. Issue Tokens to Clients
Passport supports several OAuth2 grant types. The most common ones:
a) Personal Access Tokens (for trusted clients)
Useful for testing or first-party apps (eg, CLI tools). Users generate tokens via the UI.
In your controller or Tinker:
$user = User::find(1); $token = $user->createToken('Token Name')->accessToken; return ['access_token' => $token];
b) Password Grant (for first-party apps like mobile apps)
This flow lets users log in with email/password and receive an access token.
First, create a password grant client:
php artisan passport:client --password
Then, request a token from your frontend or client:
POST /oauth/token Content-Type: application/json { "grant_type": "password", "client_id": "your-password-client-id", "client_secret": "your-password-client-secret", "username": "user@example.com", "password": "password", "scope": "" }
You'll get a JSON response with access_token
, refresh_token
, and expiry.
? Always use HTTPS for token requests.
6. Protect API Routes
Use the auth:api
middleware to protect routes:
Route::middleware('auth:api')->get('/user', function (Request $request) { return $request->user(); });
Or in a controller:
public function __construct() { $this->middleware('auth:api'); }
7. Handle Token Scopes (Optional)
Scopes let you define fine-grained permissions.
Define scopes in AuthServiceProvider
:
Passport::tokensCan([ 'read-profile' => 'Read user profile', 'update-profile' => 'Update user profile', ]);
Attach scopes to tokens during issue (eg, in password grant request):
"scope": "read-profile update-profile"
Then protect routes by scope:
Route::get('/profile', function () { // Must have 'read-profile' scope })->middleware('scopes:read-profile');
Or check in code:
if ($request->user()->tokenCan('update-profile')) { ... }
8. Token Expiry and Refresh
Access tokens expire (default: 1 year for personal tokens, 1 hour for password grant). Use the refresh_token
to get a new access token:
POST /oauth/token { "grant_type": "refresh_token", "refresh_token": "your-refresh-token", "client_id": "client-id", "client_secret": "client-secret", "scope": "" }
9. Revoke Tokens
To revoke a token:
$accessToken = Auth::user()->token(); $accessToken->revoke();
Or use the revocation endpoint if enabled.
10. CORS and Frontend Considerations
If your frontend is on a different domain, configure CORS properly using Laravel Sanctum or a package like fruitcake/laravel-cors
.
Also, consider using stateless authentication — Passport works statelessly with bearer tokens, so no session is needed.
In short:
- Use personal access tokens for testing/trusted clients.
- Use password grant for first-party apps (mobile/web).
- Always protect routes with
auth:api
. - Use scopes for permission control.
- Handle token refresh and revocation.
With Passport, Laravel makes OAuth2 manageable without needing to write boilerplate.
Basically, once it's set up, it just works.
The above is the detailed content of How to handle API authentication with Laravel Passport?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

ToworkeffectivelywithpivottablesinLaravel,firstaccesspivotdatausingwithPivot()orwithTimestamps(),thenupdateentrieswithupdateExistingPivot(),managerelationshipsviadetach()andsync(),andusecustompivotmodelswhenneeded.1.UsewithPivot()toincludespecificcol

Laravelprovidesacleanandflexiblewaytosendnotificationsviamultiplechannelslikeemail,SMS,in-appalerts,andpushnotifications.Youdefinenotificationchannelsinthevia()methodofanotificationclass,andimplementspecificmethodsliketoMail(),toDatabase(),ortoVonage

Dependency injection automatically handles class dependencies through service containers in Laravel without manual new objects. Its core is constructor injection and method injection, such as automatically passing in the Request instance in the controller. Laravel parses dependencies through type prompts and recursively creates the required objects. The binding interface and implementation can be used by the service provider to use the bind method, or singleton to bind a singleton. When using it, you need to ensure type prompts, avoid constructor complications, use context bindings with caution, and understand automatic parsing rules. Mastering these can improve code flexibility and maintenance.

Laravel performance optimization can improve application efficiency through four core directions. 1. Use the cache mechanism to reduce duplicate queries, store infrequently changing data through Cache::remember() and other methods to reduce database access frequency; 2. Optimize database from the model to query statements, avoid N 1 queries, specifying field queries, adding indexes, paging processing and reading and writing separation, and reduce bottlenecks; 3. Use time-consuming operations such as email sending and file exporting to queue asynchronous processing, use Supervisor to manage workers and set up retry mechanisms; 4. Use middleware and service providers reasonably to avoid complex logic and unnecessary initialization code, and delay loading of services to improve startup efficiency.

Methods to manage database state in Laravel tests include using RefreshDatabase, selective seeding of data, careful use of transactions, and manual cleaning if necessary. 1. Use RefreshDatabasetrait to automatically migrate the database structure to ensure that each test is based on a clean database; 2. Use specific seeds to fill the necessary data and generate dynamic data in combination with the model factory; 3. Use DatabaseTransactionstrait to roll back the test changes, but pay attention to its limitations; 4. Manually truncate the table or reseed the database when it cannot be automatically cleaned. These methods are flexibly selected according to the type of test and environment to ensure the reliability and efficiency of the test.

LaravelSanctum is suitable for simple, lightweight API certifications such as SPA or mobile applications, while Passport is suitable for scenarios where full OAuth2 functionality is required. 1. Sanctum provides token-based authentication, suitable for first-party clients; 2. Passport supports complex processes such as authorization codes and client credentials, suitable for third-party developers to access; 3. Sanctum installation and configuration are simpler and maintenance costs are low; 4. Passport functions are comprehensive but configuration is complex, suitable for platforms that require fine permission control. When selecting, you should determine whether the OAuth2 feature is required based on the project requirements.

Laravel simplifies database transaction processing with built-in support. 1. Use the DB::transaction() method to automatically commit or rollback operations to ensure data integrity; 2. Support nested transactions and implement them through savepoints, but it is usually recommended to use a single transaction wrapper to avoid complexity; 3. Provide manual control methods such as beginTransaction(), commit() and rollBack(), suitable for scenarios that require more flexible processing; 4. Best practices include keeping transactions short, only using them when necessary, testing failures, and recording rollback information. Rationally choosing transaction management methods can help improve application reliability and performance.

The core of handling HTTP requests and responses in Laravel is to master the acquisition of request data, response return and file upload. 1. When receiving request data, you can inject the Request instance through type prompts and use input() or magic methods to obtain fields, and combine validate() or form request classes for verification; 2. Return response supports strings, views, JSON, responses with status codes and headers and redirect operations; 3. When processing file uploads, you need to use the file() method and store() to store files. Before uploading, you should verify the file type and size, and the storage path can be saved to the database.
