vinelab/social-auth
Social Authentication - Laravel
Installation
Using composer require the package vinelab/social-auth.
Edit app.php and add 'Vinelab\Auth\AuthServiceProvider' to the 'providers' array.
It will automatically alias itself as SocialAuth which is a Facade.
Configuration
Publish the configuration file using php artisan vendor:publish
Usage
<?php
// start the authentication process
$provider = 'facebook';
// inital authentication route
SocialAuth::authenticate($provider);
// callback route should do this
$profile = SocialAuth::profile($provider, Input::get());
$profile->provider(); // facebook
$profile->info(); // the facebook profile information
Related Packages
hasinhayder/tyro-login
Complete authentication kit for Laravel 12 & 13 — 10 premium layouts, social OAu...
8,983
250
auth0/login
Auth0 Laravel SDK. Straight-forward and tested methods for implementing authenti...
5,468,700
274
themonkeys/laravel-google-auth
Laravel Authentication Driver for Google OAuth authentication
1,863
43

