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();