Web Development

Sanctum-Library

proflie

appstonelab

May 24, 2022

blog-image

Sanctum is an easy package to issue API tokens to the users without the complication of OAuth. Sanctum provides authentication services based on Laravel built-in cookie base sessions. For small applications, I prefer using Sanctum because it’s simple and easy.

What is Laravel Sanctum?

Laravel Sanctum gives a lightweight authentication system for simple token based APIs and mobile applications, and single page applications (SPA). In Sanctum, we have two different ways mainly as mentioned below:

1) The API Token Authentication.
2) Single page application authentication.

This Authentication process is similar to API token Authentication process.

Now we shall understand the difference between the two processes.

1) The API token Authentication:

It uses a token that you must issue before you send a request to the server. You get a token via login or register routes, then you must include this token in the Authorization token as bearer token every next request.

2) The SPA Authentication:

This authentication process does not need tokens. Instead of this, it uses laravel integrated cookie base session auth services. When we use this process of authentication, we do not include a bearer token on every request. It is used when you build first-party SPA, for your front-end project in your Laravel project or any other different project for that matter.
You can check out the codes used to create a Rest API for Laravel application below:

1) Let’s create a new Laravel project:

composer create-project laravel/laravel –prefer-dist laravel-sanctum

2) After successfully creating a project, install the Laravel sanctum package:

composer require laravel/sanctum

3) You publish the Configuration and migration files using artisan command.The Sanctum configuration file is placed in your config directory:

php artisan vendor:publish --
provider="Laravel\Sanctum\SanctumServiceProvider"

4) Migrate your database:

php artisan migrate

5) If you utilize authentication and SPA. then you add middleware to api middleware group with your app/Http/Kernel.php file:

'api' => [
\Laravel\Sanctum\Http\Middleware\EnsureFrontendRequestsAreStateful::class,
'throttle:api',
\Illuminate\Routing\Middleware\SubstituteBindings::class,
],

6) To start issue tokens for users, then User modal should use Laravel\Sanctum\HasAPITokens trait:

use Laravel\Sanctum\HasApiTokens;
class User extends Authenticatable
{
use HasApiTokens, HasFactory, Notifiable;
}

7) Route authentications:

Routing is one of the important features of a Laravel application. In this part, we will set up our API routes:
use App\Http\Controllers\AuthenticationController;
Route::post('/register', [AuthenticationController::class, 'createAccount']);

8) Create controller:

Php artisan make: controller AuthenticationController

9) Edit controller:

class AuthenticationController extends Controller
{
public function createAccount(Request $request)
{
$attr = $request->validate([
'name' => 'required|string|max:255',
'email' => 'required|string|email|unique:users,email',
'password' => 'required|string|min:6|confirmed'
]);
$user = User::create([
'name' => $attr['name'],
'password' => bcrypt($attr['password']),
'email' => $attr['email']
]);
return $this->success([
'token' => $user->createToken('tokens')->plainTextToken
]);
}

10) Let’s Test:

I have written a logic in the Controller above. The createAccount() method creates new validated users that generates tokens if successfully registered.

Conclusion:

In this blog, we tried explaining to you what Laravel sanctum is and how it works. We have elaborated a step-by-step procedure on how to authenticate and give access to users using Laravel sanctum.

By using this, you can authenticate faster and easier than any other library.

Related Blogs

App Development

Custom extensions in Dart
proflie

appstonelab

May 24, 2022

blog-img

App Development

How To Flash Custom Rom on an Android Device
proflie

appstonelab

May 24, 2022

blog-img

Human Resources

5 Tips for Managing Diversity in the Workplace
proflie

appstonelab

May 24, 2022

blog-img