Learn more about Laravel Authentication Bearer Token. Our Laravel Support team is here to help you with your questions and concerns.
Laravel Authentication Bearer Token
Did you know that the Bearer token authentication helps authenticate API requests?
Here, each request includes a token to authenticate the user making the request.
In Laravel, we can use this via Laravel Passport or Laravel Sanctum.
Today, we will take a close look at how to use Laravel Sanctum in a Laravel application.
Setting Up A Laravel Project
- To begin with, create a new Laravel project. This is done by running this command in a terminal:
composer create-project laravel/laravel simple-api
- Then, go to the project directory:
cd simple-api
- Next, install Laravel Sanctum along with Laravel Fortify:
composer require laravel/sanctum laravel/fortify
php artisan vendor:publish --provider="Laravel\Fortify\FortifyServiceProvider"
php artisan vendor:publish --provider="Laravel\Sanctum\SanctumServiceProvider"
- Now, it is time to define the structure of our users table. We can modify the default migration file for users located at `database/migrations`.
php artisan migrate
- Then, disable unnecessary routes for views in the `config/fortify.php` configuration file:
'views' => false,
- Now, create a controller to handle authentication:
php artisan make:controller API/AuthenticationController
- Next, we have to define routes for login, registration, and logout in the `routes/api.php` file:
Route::post('/login', [AuthenticationController::class, 'login'])->name('login');
Route::post('/register', [AuthenticationController::class, 'register'])->name('register');
Route::middleware('auth:sanctum')->post('/logout', [AuthenticationController::class, 'logout'])->name('logout');
- Then, in the `AuthenticationController`, use the `login` and `logout` methods to handle authentication:
public function login(Request $request) {
// Authentication logic
}
public function logout(Request $request) {
// Logout logic
}
- Additionally, set the registration endpoint in the `AuthenticationController`:
public function register(Request $request) {
// Registration logic
}
- Finally, test the API using tools like Postman. Make requests to the `/register` and `/login` endpoints. Also, make sure that the authentication token is included in upcoming requests.
[Need assistance with a different issue? Our team is available 24/7.]
Conclusion
In brief, our Support Experts introduced us to the Laravel Authentication Bearer Token via Laravel Sanctum.
PREVENT YOUR SERVER FROM CRASHING!
Never again lose customers to poor server speed! Let us help you.
Our server experts will monitor & maintain your server 24/7 so that it remains lightning fast and secure.
0 Comments