Use Laravel Socialite Package To Make A Login With Facebook - FreeCodeBlog
Last updated: Dec 11, 2021
You can easily create login with facebook system in laravel using laravel first party package (laravel socialite). In this tutorial I will show you how we can use laravel socialite package to make a login with facebook system.

Install & Use Laravel Socialite.
Once the laravel has been installed, install laravel first party package socialite to make login with facebook.
composer require laravel/socialite
Open config/services.php configuration file and use the key facebook depending on the providers your application requires.
'facebook' => [
'client_id' => env('FACEBOOK_CLIENT_ID'),
'client_secret' => env('FACEBOOK_CLIENT_SECRET'),
'redirect' => '127.0.0.1:8000/callback-url',
],
Okay so this is for today. See you again next tutorials. Thanks

My name is Masum Biswas. I'm a full stack developer. I live in Bangladesh and I love to write tutorials and tools that can help to other artisan. I am a big fan of PHP, Javascript, JQuery, Laravel, MySQL, VueJS, Tailwind CSS and Bootstrap from the early stage.
Welcome to laravel. Want to install laravel version on your environment (windows 10, cpanel)? Yes!. Okay After reading this tutorial you can easily... Read More
You can use laravel breeze first party authentication in laravel 8 or other version. In this tutorial I will show you how we can install laravel br... Read More
Did you deploy the Laravel project to the shared hosting cpanel? Yes. Good, Have you configured the Laravel project after deploying on the shared h... Read More
Hello guys, In this tutorial I will explain about laravel database session. We can easily use database session driver for our laravel project. So l... Read More
Unique username in laravel! Yes you can generate a unique username in laravel when user will register her account. So do you want to make a usernam... Read More