How to implement Facebook login in Laravel

A step-by-step guide on how to integrate Facebook login into a Laravel application using the Socialite library. The article covers Facebook OAuth configuration and how to handle the login process in Laravel.

In this article, we will learn how to implement Facebook login functionality in Laravel using the Socialite package. Socialite is a powerful library that supports integrating social logins such as Facebook, Google, and Twitter into Laravel applications.

Laravel Code:

Step 1: Install Laravel Socialite

To get started, install the Socialite package using Composer:

composer require laravel/socialite

Step 2: Configure Facebook OAuth

Go to Facebook Developers and create a new app to get the App ID and App Secret.

After you have the credentials, add them to the .env file in your Laravel project:

FACEBOOK_CLIENT_ID=your-facebook-app-id
FACEBOOK_CLIENT_SECRET=your-facebook-app-secret
FACEBOOK_REDIRECT_URL=https://yourdomain.com/auth/facebook/callback

Step 3: Configure Laravel

Add the following configuration to config/services.php:

'facebook' => [
    'client_id' => env('FACEBOOK_CLIENT_ID'),
    'client_secret' => env('FACEBOOK_CLIENT_SECRET'),
    'redirect' => env('FACEBOOK_REDIRECT_URL'),
],

Step 4: Create routes

Add routes to handle Facebook redirection and callback:

use Laravel\Socialite\Facades\Socialite;

Route::get('/auth/facebook', function () {
    return Socialite::driver('facebook')->redirect();
});

Route::get('/auth/facebook/callback', function () {
    $user = Socialite::driver('facebook')->user();

    // Handle login or registration
    $authUser = User::updateOrCreate([
        'facebook_id' => $user->getId(),
    ], [
        'name' => $user->getName(),
        'email' => $user->getEmail(),
    ]);

    Auth::login($authUser);

    return redirect()->intended('dashboard');
});

Step 5: Update the User model

Open User.php and add a facebook_id column to the users table by creating a migration:

php artisan make:migration add_facebook_id_to_users_table --table=users

Update the migration file:

Schema::table('users', function (Blueprint $table) {
    $table->string('facebook_id')->nullable();
});

Run the migration to update the users table:

php artisan migrate

Detailed explanation:

  1. composer require laravel/socialite: Install the Socialite package to use OAuth services.
  2. env('FACEBOOK_CLIENT_ID'): Retrieves credentials from the .env file for Facebook OAuth configuration.
  3. Socialite::driver('facebook')->redirect(): Redirects the user to Facebook login.
  4. Socialite::driver('facebook')->user(): Retrieves the user's information after successful login.
  5. User::updateOrCreate(...): Creates or updates a user account based on the Facebook ID.

System requirements:

  • Laravel 8.x or 9.x
  • PHP 7.4 or higher
  • Composer

How to install the libraries:

  • Use Composer to install Socialite:
composer require laravel/socialite

Tips:

  • Ensure HTTPS is configured for your application when using Facebook OAuth.
  • Handle cases where users might not provide necessary information like email during the login process.


Related

How to use nested Where functions in Laravel

This article summarizes the ways to use nested `where` functions in Laravel, helping readers understand how to construct complex queries in their applications.
All ways to SELECT data from a MySQL database in Laravel

Explore various methods to select data from a MySQL database in Laravel, including using Eloquent ORM and Query Builder.
JSON Web Token (JWT) Authentication with Laravel

Step-by-step guide to implementing API authentication using JSON Web Token (JWT) in Laravel. This article covers installation and configuration to secure your web application using token-based authentication.
How to Force HTTPS in Laravel

A detailed guide on how to force HTTPS in Laravel, ensuring all requests to your application are redirected to HTTPS, thus enhancing your website's security.
How to pass Authentication Header Token when POSTing data to an API in Laravel

A guide on how to pass an Authentication Header Token when POSTing data to an API in Laravel. The article covers how to use Laravel's built-in `HTTP Client` to send a Token along with the data to the API.
Generating Captcha in Laravel

A detailed guide on how to create a Captcha in Laravel to protect forms from spam and verify user authenticity. This tutorial will help you integrate Captcha into your Laravel project with ease.
How to use the where function in Laravel

A detailed guide on using the `where` function in Laravel to perform effective and flexible database queries.
Read Excel Content Using Laravel

A detailed guide on reading Excel file content in Laravel using the Laravel Excel package. This article provides sample code, a step-by-step explanation, and instructions for installing the necessary package.
All methods to UPDATE data in a MySQL database using Laravel

A comprehensive guide on how to update data in a MySQL database using Laravel, covering both Eloquent ORM and Query Builder methods.
How to convert a Markdown string to HTML using Laravel

A guide on how to convert a Markdown string to HTML in Laravel using the `league/commonmark` library, making the conversion process simple and effective.

main.add_cart_success