我完全遵循文档。
https://github.com/laravel/socialite和https://laravel.com/docs/5.1/authentication#social-authentication
我在Facebook上创建了自己的应用,让一切正常。当我点击我的Facebook登录按钮时,它授权应用程序并将我带回我的网站。 但是,它并没有显示我已登录。如果我dd()而不是下面的重定向,我从我的Facebook帐户获取所有数据。但是,只有登录用户可见的页面才可见。
这是我的控制器:
public function redirectToProvider()
{
return Socialite::driver('facebook')->redirect();
}
public function handleProviderCallback()
{
$user = Socialite::driver('facebook')->user();
return redirect('my-profile')
->with('message', 'You have signed in with Facebook.');
}
以下是我的路线:
Route::get('login/facebook', 'Auth\AuthController@redirectToProvider');
Route::get('login/facebook/callback', 'Auth\AuthController@handleProviderCallback');
在composer.json中正确安装了Socialite。这些类在config / app.php中,我的FB应用程序的ID在config / services.php中。
关于它为什么不起作用的任何想法?
答案 0 :(得分:4)
在handleProviderCallback
方法中,您需要创建并验证驱动程序返回的用户。
如果不存在,则创建用户:
$userModel = User::firstOrNew(['email' => $user->getEmail()]);
if (!$userModel->id) {
$userModel->fill([.....]);
$userModel->save();
}
然后验证用户:
Auth::login($userModel);
您的方法将如下所示:
public function handleProviderCallback() {
$user = Socialite::driver('facebook')->user();
$userModel = User::firstOrNew(['email' => $user->getEmail()]);
if (!$userModel->id) {
$userModel->fill([.....]);//Fill the user model with your data
$userModel->save();
}
Auth::login($userModel);
return redirect('my-profile')
->with('message', 'You have signed in with Facebook.');
}