使用laravel 5.1 socialite进行facebook身份验证

时间:2016-11-21 02:33:10

标签: facebook laravel laravel-5.1 laravel-socialite

你好我使用localhost所以我最近切换到laravel 5.1并且我试图使用' socialite'它提供了所以我更新了我的configservices.env文件,所以在我的路线中我也添加了这些代码

Route::get('/', function () {
return view('welcome');
 });
 Route::get('auth/facebook', 'Auth\AuthController@redirectToProvider');
 Route::get('auth/facebook/callback','Auth\AuthController@handleProviderCallback');
Route::get('home', array('as' => 'home', 'uses' => function(){
return view('home');
}));

然后在我的AuthController中我有这些代码 enter image description here

在我看来按钮'登录facebook'有href的{​​{1}}但是会​​发生什么是facebook给我一个错误说 enter image description here

注意:我也在Facebook开发者中使用我的Facebook应用程序 我也在我的域上添加了这个,但也有一个警告 enter image description here

我仍然对我的错误在哪里感到困惑。知道我做错了什么吗?谢谢你的建议。

1 个答案:

答案 0 :(得分:1)

您是否已将网站网址值检入网站网址字段。更新并检查。

enter image description here

这应该适合你。