2016-07-11 83 views
0

我如何發出的自定義字段中的社交laravel在RedirectToProvider方法,使用這種方法來獲取自定義字段:發送和社交laravel 5

if ($social == 'facebook') { 
    return Socialize::with($social)->fields([ 
       'first_name', 'last_name', 'email', 'gender', 'birthday' 
      ])->scopes([ 
       'email', 'user_birthday' 
      ])->redirect(); 
} 

假設我想發送的network_id => 9.

然後我如何才能在我的處理程序方法中獲取用戶信息?

$user = Socialize::with('facebook')->user(); 

回答

0

使用

$user = Socialite::driver('facebook')->user(); 

,然後檢索從$用戶數組項,像這樣

$user['email']