Auth Demo is a backend application built with Laravel 11, utilizing Passport and Socialite for OAuth authentication. It serves a REST API for user authentication, supporting both normal email/password login and Google OAuth.
This project is intended to be used with OAuth Demo Frontend
Method | URL | Description |
---|---|---|
POST |
api/auth/register |
Register using name, email, and passworn. Returns the token as a cookie |
POST |
api/auth/login |
Login using email and password. Returns the token as a cookie |
POST |
api/auth/logout |
Logout using the cookie with the token |
POST |
api/auth/google/exchange |
Exchanges the auth code with a cookie that has the token |
URL | Description |
---|---|
auth/google/redirect |
Redirects the user to the Google OAuth login page to authenticate via Google |
auth/google/callback |
Handles the Google OAuth callback and redirects user to the frontend with the auth code |
-
Clone the project
git clone https://github.com/RasyaJusticio/oauth-demo-backend
-
Go to the project directory
cd oauth-demo-backend
-
Setup the environment
- Copy the
.env.example
file to.env
cp .env.example .env
- Configure your database
DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=oauth-demo DB_USERNAME=root DB_PASSWORD=
- Add your Google Client ID and Client Secret
GOOGLE_CLIENT_ID= GOOGLE_CLIENT_SECRET=
- Copy the
-
Install dependencies
composer install
-
Migrate the migrations
php artisan migrate
-
Generate the keys
- Generate Laravel App key
php artisan key:generate
- Generate Passport encryption key
php artisan passport:keys
- Create the personal access Client
php artisan passport:client --personal
-
Start the server
php artisan serve