Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
April 12, 2022 08:56 am

Set Up an OAuth2 Server Using Passport in Laravel


In this article, we’re going to explore how you could set up a fully fledged OAuth2 server in Laravel using the Laravel Passport library. We’ll go through the necessary server configurations along with a real-world example to demonstrate how you could consume OAuth2 APIs.


I assume that you’re familiar with the basic OAuth2 concepts and flow as we’re going to discuss them in the context of Laravel. In fact, the Laravel Passport library makes it pretty easy to quickly set up an OAuth2 server in your application. Thus, other third-party applications are able to consume APIs provided by your application.


In the first half of the article, we’ll install and configure the necessary libraries, and the second half goes through how to set up demo resources in your application and consume them from third-party applications.


Server Configurations


In this section, we're going to install the dependencies that are required in order to make the Passport library work with Laravel. After installation, there's quite a bit of configuration that we'll need to go through so that Laravel can detect the Passport library.


Install the Laravel Passport Library


Let's go ahead and install the Passport library using composer.



That's pretty much it as far as the Laravel Passport library installation is concerned. Now let's make sure that Laravel knows about it.


Enable the Passport Service


Working with Laravel, you're probably aware of the concept of a service provider that allows you to configure services in your application. Thus, whenever you want to enable a new service in your Laravel application, you just need to add an associated service provider entry in the config/app.php.


If you're not aware of Laravel service providers yet, I would strongly recommend that you do yourself a favor and go through this introductory article that explains the basics of service providers in Laravel.


In our case, we just need to add the PassportServiceProvider provider to the list of service providers in config/app.php as shown in the following snippet.



Create Database Tables


Now, we need to run the migrate artisan command, which creates the necessary tables in a database for the Passport library.



To be precise, it creates following the tables in the database.



Create a Pair of Public and Private Keys


Next, we need to generate a pair of public and private keys that will be used by the Laravel Passport library for encryption. As expected, the Passport library provides an artisan command to create it easily.



That should have created keys at storage/oauth-public.key and storage/oauth-private.key. It also creates some demo client credentials that we'll get back to later.


Oauthify the User Model


Moving ahead, let's oauthify the existing User model class which Laravel uses for authentication. To do that, we need to add the HasApiTokens trait to the User model class. Let's do that as shown in the following snippet.



The HasApiTokens trait contains helper methods that are used to validate tokens in the request and check the scope of resources being requested in the context of the currently authenticated user.


Register the Passport Routes


Further, we need to register the routes provided by the Passport library with our Laravel application. These routes will be used for standard OAuth2 operations like authorization, requesting access tokens, and the like.


In the boot method of the app/Providers/AuthServiceProvider.php file, let's register the routes of the Passport library. You also need to add the use Laravel\Passport\Passport line in the beginning of this file.



Tweak the API Driver Configuration


Last but not least, we need to change the api driver from token to passport in the config/auth.php file, as we're going to use the Passport library for the API authentication.



So far, we've done everything that's required as far as the OAuth2 server configuration is concerned.


Set Up the Demo Resources


In the previous section, we did all the hard work to set up the OAuth2 authentication server in our application. In this section, we'll set up a demo resource that could be requested over the API call.


We will try to keep things simple. Our demo resource returns the user information provided that there's a valid uid parameter present in the GET request.


Let's create a controller file app/Http/Controllers/UserController.php with the following contents.



As usual, you need to add an associated route as well, which you are supposed to add in the routes/web.php file. But what we are talking about is the API route, and thus it needs special treatment.


The API routes are defined in the routes/api.php file. So let's go ahead and add our custom API route as shown in the following snippet.



Although we've defined it as /user/get, the effective API route is /api/user/get, and that's what you should use when you request a resource over that route. The api prefix is automatically handled by Laravel, and you don't need to worry about that!


In the next and last section, we'll discuss how you could create client credentials and consume the OAuth2 API.


How to Consume OAuth2 APIs


Now that we've set up the OAuth2 server in our application, any third party can connect to our server with OAuth and consume the APIs available in our application.


First of all, third-party applications must register with our application in order to be able to consume APIs. In other words, they are considered as client applications, and they will receive a client id and client secret upon registration.


By default, the Passport library already creates a couple of example clients when you run the php artisan passport:install command. Apart from that, it also allows you to create new clients as needed. The Passport library provides an artisan command to create client accounts without much hassle. Let's go ahead and create a demo client account.



When you run the artisan passport:client command, it asks you a few questions before creating the client account. Out of those, there's an important one that asks you the callback URL.


The callback URL is the one where users will be redirected back to the third-party end after authorization. And that's where the authorization code that is supposed to be used in exchange for the access token will be sent. We are about to create that file in a moment.


Now, we're ready to test OAuth2 APIs in the Laravel application.


For demonstration purposes, I'll create the oauth2_client directory under the document root in the first place. Ideally, these files will be located at the third-party end that wants to consume APIs in our Laravel application.


Let's create the oauth2_client/auth_redirection.php file with the following contents.



Make sure to change the client_id and redirect_uri parameters to reflect your own settings—the ones that you used while creating the demo client account.


Next, let's create the oauth2_client/callback.php file with the following contents.



Again, make sure to adjust the URLs and client credentials according to your setup in the above file.


How It Works Altogether


In this section, we'll test it altogether from the perspective of an end user. As an end user, there are two applications in front of you:



  1. The first one is the Laravel application which you already have an account with. It holds your information that you could share with other third-party applications.

  2. The second one is the demo third-party client application, auth_redirection.php and callback.php, which wants to fetch your information from the Laravel application using the OAuth API.


The flow starts from the third-party client application. Go ahead and open the http://localhost/oauth2_client/auth_redirection.php URL in your browser, and it should redirect you to the Laravel application. If you're not already logged into the Laravel application, the application will ask you to do so in the first place.


Once the user is logged in, the application displays the authorization page.


If the user authorizes that request, the user will be redirected back to the third-party client application at http://localhost/oauth2_client/callback.php along with the code as the GET parameter that contains the authorization code.


Once the third-party application receives the authorization code, it could exchange that code with the Laravel application to get the access token. And that's exactly what it has done in the following snippet of the oauth2_client/callback.php file.



Next, the third-party application checks the response of the CURL request to see if it contains a valid access token in the first place.


As soon as the third-party application gets the access token, it could use that token to make further API calls to request resources as needed from the Laravel application. Of course, the access token needs to be passed in every request that's requesting resources from the Laravel application.


We've tried to mimic the use-case in that the third-party application wants to access the user information from the Laravel application. And we've already built an API endpoint, http://your-laravel-site-url/api/user/get, in the Laravel application that facilitates it.



So that's the complete flow of how you're supposed to consume the OAuth2 APIs in Laravel.


And with that, we’ve reached the end of this article.


Conclusion


Today, we explored the Laravel Passport library in Laravel, which allows us to set up an OAuth2 server in an application very easily. 


For those of you who are either just getting started with Laravel or looking to expand your knowledge, site, or application with extensions, we have a variety of things you can study in Envato Market.



Original Link: https://code.tutsplus.com/tutorials/setup-oauth2-server-using-passport-in-laravel--cms-30576

Share this article:    Share on Facebook
View Full Article

TutsPlus - Code

Tuts+ is a site aimed at web developers and designers offering tutorials and articles on technologies, skills and techniques to improve how you design and build websites.

More About this Source Visit TutsPlus - Code