Laravel/PHP Code Sample: Basic API Authorization with Auth0 Laravel SDK
This PHP code sample demonstrates how to implement authorization in a Laravel API server using Auth0 by Okta with no code thanks to the new Auth0 Laravel SDK. This code sample shows you how to accomplish the following tasks:
-
Register a Laravel API in the Auth0 Dashboard.
-
Use Laravel middleware to enforce API security policies.
-
Perform access control in Laravel using a token-based authorization strategy powered by JSON Web Tokens (JWTs).
-
Validate access tokens in JSON Web Token (JWT) format using Laravel middleware.
-
Make authenticated requests to a secure Laravel API server.
Laravel Code Sample Specs
This code sample uses the following main tooling versions:
- Laravel
v10.10
- PHP
v8.2
- Auth0 Laravel SDK
v7.12
The Laravel project dependency installations were tested with Composer v2.6
.
Quick Auth0 Set Up
First and foremost, if you haven't already, sign up for an Auth0 account to connect your API with the Auth0 Identity Platform.
Next, you need to create an API registration in the Auth0 Dashboard. You'll get two configuration values, the Auth0 Audience and the Auth0 Domain, that will help connect your API server with Auth0. You'll also need a test access token to practice making secure calls to your API.
Get the Auth0 audience
-
Open the APIs section of the Auth0 Dashboard.
-
Click on the Create API button and fill out the "New API" form with the following values:
Hello World API Server
https://hello-world.example.com
- Click on the Create button.
When setting up APIs, we also refer to the API identifier as the Audience value. Store that value in the following field to set up your API server in the next section:
Get the Auth0 domain
Now, follow these steps to get the Auth0 Domain value.
-
Open the Auth0 Domain Settings
-
Locate the bold text in the page description that follows this pattern:
tenant-name.region.auth0.com
. That's your Auth0 domain! -
Paste the Auth0 domain value in the following field so that you can use it in the next section to set up your API server:
region
subdomain (au
, us
, or eu
) is optional. Some Auth0 Domains don't have it.Get an Auth0 access token
You can get an access token from the Auth0 Dashboard to test making a secure call to your protected API endpoints:
- On the Auth0 API page, click on the "Test" tab.
-
Locate the section called "Response" and click on the copy button on the top-right corner.
-
Paste the access token value in the following field so that you can use it in the next sections to test your API server:
When you enter a value in the input fields present on this page, any code snippet that uses such value updates to reflect it. Using the input fields makes it easy to copy and paste code as you follow along.
Set Up and Run the Laravel Project
Start by cloning the Laravel project:
git clone https://github.com/auth0-developer-hub/api_laravel_php_hello-world_laravel-sdk.git
Make the project directory your current working directory:
cd api_laravel_php_hello-world_laravel-sdk
Then, check out the basic-authorization
branch, which holds all the code related to implementing token-based authorization to protect resources in a Laravel API:
git checkout basic-authorization
Now, create a .env
file under the root project directory:
touch .env
Populate it with the following environment variables:
APP_PORT=6060CLIENT_ORIGIN_URL=http://localhost:4040AUTH0_AUDIENCE=AUTH0-AUDIENCEAUTH0_DOMAIN=AUTH0-DOMAIN
With your .env
in place, install the Laravel project dependencies:
composer install
Execute the following command to run the Laravel API server using Sail:
./vendor/bin/sail up
Otherwise, use the following command to run the API server using Composer:
php artisan serve --port 6060
Make an Authenticated API Request
You can use a terminal application to make an authenticated request to your API server. An authenticated request is a request that includes a bearer token in its authorization header. That bearer token is the access token in JSON Web Token (JWT) format that you obtained earlier from the Auth0 Dashboard.
You can structure the authenticate request as follows:
curl --request GET \--url http:/localhost:6060/api/messages/protected \--header 'authorization: Bearer AUTH0-ACCESS-TOKEN'
Execute the command above on your terminal and ensure that you get the following response:
{"text": "This is a protected message."}
Request API Resources from a Client Application
Let's simulate an essential feature of an API: serving data to client applications.
You can pair this API server with a client application that matches the technology stack that you use at work. Any "Hello World" client application can communicate with this "Hello World" API server sample.
You can simulate a secure full-stack application system in no time. Each client application sample gives you clear instructions to get it up and running quickly.
Pick a Single-Page Application (SPA) code sample in your preferred frontend framework and language:
Once you set up the client application, log in and visit the protected "Profile" page (http://localhost:4040/profile
) to see all the user profile information that Auth0 securely shares with your application using ID tokens.
Then, visit the "Protected" page (http://localhost:4040/protected
) or the "Admin" page (http://localhost:4040/admin
) to practice requesting protected resources from an external API server using access tokens.