LaravelFacebookSdk
LaravelFacebookSdk copied to clipboard
Get extra fields
O would like to get other fields rather than id, mail.
I tried:
try { $response = $fb->get('/me?fields=id,name,email,relationship_status,location',$token); } catch (Facebook\Exceptions\FacebookSDKException $e) { dd($e->getMessage()); }
But it didn't return anything.
Can anyone helps me?