I'm using this package, https://github.com/artdarek/oauth-4-laravel but only getting id and user name. I need additional data like email, firstname, lastname etc
I used this package as also need to integrate login with google also
'Facebook' => array( 'client_id' => 'aaa----aaaaa', 'client_secret' => 'xxx----xxxxx', 'callback_url' => 'http://staging.crossinghoods.com/customer-account/login/fb/callback', 'scope' => array('email'), ),
$result = json_decode( $fb->request( '/me?fields=email,first_name,last_name,picture' ), true );
These two steps solved my issue. But it was not found in the documentation.