


Laravel development: How to implement API OAuth2 authentication using Laravel Passport?
As the use of APIs becomes more and more popular, protecting the security and scalability of APIs becomes increasingly critical. OAuth2 has become a widely adopted API security protocol that allows applications to access protected resources through authorization. To implement OAuth2 authentication, Laravel Passport provides a simple and flexible way. In this article, we will learn how to implement API OAuth2 authentication using Laravel Passport.
Laravel Passport is an officially provided OAuth2 server library that can easily add OAuth2 authentication to your Laravel application. It provides API authentication for clients of the Laravel framework, protecting APIs and restricting resource access through tokens. With a few configuration steps, you can create a secure OAuth2 server and provide authentication and authorization for your API.
In order to start using Laravel Passport, you need to install it. You can install it through the Composer package manager:
composer require laravel/passport
Once you have Laravel Passport installed, you need to run migrations to create the necessary database tables:
php artisan migrate
In order to enable Laravel Passport, you need to register ServiceProvider and middleware. Add the following ServiceProvider and middleware in the config/app.php file:
'providers' => [ // ... LaravelPassportPassportServiceProvider::class, ], 'middleware' => [ // ... LaravelPassportHttpMiddlewareCreateFreshApiToken::class, ],
Laravel Passport requires a "keys" table for issuing access tokens and refresh tokens. Running the following command will generate this table:
php artisan passport:install
This will create an encrypted RSA key pair for signing and verifying tokens, as well as a client named "personal_access_client" and a client named "password_client" client. These two clients are used to create different types of tokens. The first client is used to generate personal access tokens that allow the client to access any API endpoint secured with OAuth2 authentication. The second client is used to create password authorization tokens that allow the client to obtain an access token via username and password.
In this process, you also need to configure Laravel Passport in your config/auth.php file. You need to add the passport driver to the API guard so that Laravel Passport can handle everything related to OAuth2. An example is as follows:
'guards' => [ // ... 'api' => [ 'driver' => 'passport', 'provider' => 'users', ], ],
Now that we have completed the setup, we can start creating API routes and controllers.
First, you need to define the API route. For example, let's say you have an API endpoint to get a list of tasks:
Route::get('/tasks', 'TaskController@index')->middleware('auth:api');
Next, you need to create a controller to handle the request and respond to the tasks:
class TaskController extends Controller { public function index() { $tasks = Task::all(); return response()->json([ 'tasks' => $tasks, ]); } }
In the middleware method add " auth:api" parameter to instruct us to use API guards to protect routes.
Now let's see how to perform OAuth2 authentication and get access token. You need to create a client that will authorize the OAuth2 flow using the password to obtain the access token. This way you can authenticate on the API endpoint with API requests.
You can create a new client in Laravel Passport's client list, or use the Passport::client() method in your code to generate a random client id and client secret for the client. You can save the client id and client secret in your .env file or you can provide them directly in your Passport::client() method. This method will create a new client and return the client id and client secret:
use LaravelPassportClient; use IlluminateSupportFacadesDB; $client = $this->createClient(); public function createClient() { $client = Client::forceCreate([ 'user_id' => null, 'name' => 'Test Client', 'secret' => str_random(40), 'redirect' => '', 'personal_access_client' => false, 'password_client' => true, 'revoked' => false, ]); DB::table('oauth_client_grants')->insert([ 'client_id' => $client->id, 'grant_id' => 1, ]); return $client; }
Now that we have a client, we need to use Laravel Passport in the controller to get the access token and use it to access protected API endpoints. We need to implement OAuth2 authentication in the controller using the following code:
use IlluminateSupportFacadesAuth; use LaravelPassportClientRepository; class TaskController extends Controller { protected $clients; public function __construct(ClientRepository $clients) { $this->clients = $clients; } public function index() { $client = $this->clients->find(2); $response = $this->actingAsClient($client, function () { return $this->get('/api/tasks'); }); return $response->getContent(); } protected function actingAsClient($client, $callback, $scopes = []) { $proxy = new LaravelPassportHttpControllersAccessTokenController(); $token = $proxy->issueToken( $this->getPersonalAccessTokenRequest($client, $scopes) ); Auth::guard('web')->loginUsingId($client->user_id); $callback($token); return $this->app->make(IlluminateHttpRequest::class); } protected function getPersonalAccessTokenRequest($client, $scopes = []) { $data = [ 'grant_type' => 'client_credentials', 'client_id' => $client->id, 'client_secret' => $client->secret, 'scope' => implode(' ', $scopes), ]; return IlluminateHttpRequest::create('/oauth/token', 'POST', $data); } }
Using the actingAsClient() method we can simulate running the request as a client and any method in the controller can use this method for OAuth2 Authentication. We need to pass a client object, a callback function to perform the API request, and optionally the permissions to add to the request.
Now that we have completed the OAuth2 authentication configuration for Laravel Passport, we can easily implement secure OAuth2 authentication on our API endpoints by using the above code pattern. Passport is a relatively new project. However, it is perfectly integrated with Laravel and provides multiple OAuth2 authentication services, allowing you to easily add authentication and authorization to your API. If you are running a Laravel application and need to add OAuth2 authentication, Laravel Passport is ideal for this purpose.
The above is the detailed content of Laravel development: How to implement API OAuth2 authentication using Laravel Passport?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

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

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

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

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)

Hot Topics

PHP and Flutter are popular technologies for mobile development. Flutter excels in cross-platform capabilities, performance and user interface, and is suitable for applications that require high performance, cross-platform and customized UI. PHP is suitable for server-side applications with lower performance and not cross-platform.

Database operations in PHP are simplified using ORM, which maps objects into relational databases. EloquentORM in Laravel allows you to interact with the database using object-oriented syntax. You can use ORM by defining model classes, using Eloquent methods, or building a blog system in practice.

PHP unit testing tool analysis: PHPUnit: suitable for large projects, provides comprehensive functionality and is easy to install, but may be verbose and slow. PHPUnitWrapper: suitable for small projects, easy to use, optimized for Lumen/Laravel, but has limited functionality, does not provide code coverage analysis, and has limited community support.

Laravel - Artisan Commands - Laravel 5.7 comes with new way of treating and testing new commands. It includes a new feature of testing artisan commands and the demonstration is mentioned below ?

The latest versions of Laravel 9 and CodeIgniter 4 provide updated features and improvements. Laravel9 adopts MVC architecture and provides functions such as database migration, authentication and template engine. CodeIgniter4 uses HMVC architecture to provide routing, ORM and caching. In terms of performance, Laravel9's service provider-based design pattern and CodeIgniter4's lightweight framework give it excellent performance. In practical applications, Laravel9 is suitable for complex projects that require flexibility and powerful functions, while CodeIgniter4 is suitable for rapid development and small applications.

Compare the data processing capabilities of Laravel and CodeIgniter: ORM: Laravel uses EloquentORM, which provides class-object relational mapping, while CodeIgniter uses ActiveRecord to represent the database model as a subclass of PHP classes. Query builder: Laravel has a flexible chained query API, while CodeIgniter’s query builder is simpler and array-based. Data validation: Laravel provides a Validator class that supports custom validation rules, while CodeIgniter has less built-in validation functions and requires manual coding of custom rules. Practical case: User registration example shows Lar

PHP Unit and Integration Testing Guide Unit Testing: Focus on a single unit of code or function and use PHPUnit to create test case classes for verification. Integration testing: Pay attention to how multiple code units work together, and use PHPUnit's setUp() and tearDown() methods to set up and clean up the test environment. Practical case: Use PHPUnit to perform unit and integration testing in Laravel applications, including creating databases, starting servers, and writing test code.

For beginners, CodeIgniter has a gentler learning curve and fewer features, but covers basic needs. Laravel offers a wider feature set but has a slightly steeper learning curve. In terms of performance, both Laravel and CodeIgniter perform well. Laravel has more extensive documentation and active community support, while CodeIgniter is simpler, lightweight, and has strong security features. In the practical case of building a blogging application, Laravel's EloquentORM simplifies data manipulation, while CodeIgniter requires more manual configuration.
