-
Notifications
You must be signed in to change notification settings - Fork 125
Open
Description
I add next code in serveces/FacebookOAuth2Servise.php
protected $scopes = [self::SCOPE_EMAIL];
$info = $this->makeSignedRequest('me', [
'query' => [
'fields' => join(',', [
'id',
'email',
'name',
'link',
])
]
]);
$this->attributes['id'] = $info['id'];
$this->attributes['name'] = $info['name'];
$this->attributes['url'] = $info['link'];
$this->attributes['email'] = $info['email'];
`
But i can not get email, http://prntscr.com/ggd03q email == null
Metadata
Metadata
Assignees
Labels
No labels