PHP code example of wuwx / laravel-socialite-neupass
1. Go to this page and download the library: Download wuwx/laravel-socialite-neupass library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
wuwx / laravel-socialite-neupass example snippets
use Laravel\Socialite\Facades\Socialite;
class LoginController extends Controller
{
public function showLoginForm()
{
return redirect()->route("login.neupass");
}
public function redirectToProvider()
{
return Socialite::driver('neupass')
->redirectUrl(request()->getUri() . "/callback")
->redirect();
}
public function handleProviderCallback()
{
$user = Socialite::driver('neupass')->user();
}
}
Route::get('login/neupass', 'Auth\LoginController@redirectToProvider')->name("login.neupass");
Route::get('login/neupass/callback', 'Auth\LoginController@handleProviderCallback')->name("login.neupass.callback");