问题描述
我已将Laravel 5.4和socialite 3.0一起用于我的Web应用程序上的社交登录.但是如今,我遇到了一个错误 Legacy People API尚未在xxx项目中使用.然后,我对socialite软件包的核心文件进行了一些更改./vendor/laravel/socialite/src/Two/GoogleProvider.php第61行:替换 https://www.googleapis.com/plus/v1/people/我?通过 https://www.googleapis.com/oauth2/v3/userinfo ?
I have used Laravel 5.4 with socialite 3.0 for social login on my web application. But nowadays I got an error Legacy People API has not been used in project xxx. Then I have made some changes in a core file of socialite package./vendor/laravel/socialite/src/Two/GoogleProvider.phpLine 61: Replace https://www.googleapis.com/plus/v1/people/me? by https://www.googleapis.com/oauth2/v3/userinfo?
并使用以下代码更新mapUserToObject函数:
And update mapUserToObject function with below code:
protected function mapUserToObject(array $user)
{
$user['id'] = Arr::get($user, 'sub');
$user['verified_email'] = Arr::get($user, 'email_verified');
$user['link'] = Arr::get($user, 'profile');
return (new User)->setRaw($user)->map([
'id' => Arr::get($user, 'sub'),
'nickname' => Arr::get($user, 'nickname'),
'name' => Arr::get($user, 'name'),
'email' => Arr::get($user, 'email'),
'avatar' => $avatarUrl = Arr::get($user, 'picture'),
'avatar_original' => $avatarUrl,
]);
}
推荐答案
此解决方案确实有效.解决了我的问题.
This Solution does work. Fixed my issue.
非常感谢.
如果有人遇到此问题,这里是整个文件.只需更改位于以下位置的GoogleProvider类:./vendor/laravel/socialite/src/Two/GoogleProvider.php与此:
Here is the whole file if anybody is having this issue. Just change GoogleProvider class located in:./vendor/laravel/socialite/src/Two/GoogleProvider.php with this:
class GoogleProvider extends AbstractProvider implements ProviderInterface{
protected $scopeSeparator = ' ';
/**
* The scopes being requested.
*
* @var array
*/
protected $scopes = [
'openid',
'profile',
'email',
];
/**
* {@inheritdoc}
*/
protected function getAuthUrl($state)
{
return $this->buildAuthUrlFromBase('https://accounts.google.com/o/oauth2/auth', $state);
}
/**
* {@inheritdoc}
*/
protected function getTokenUrl()
{
return 'https://accounts.google.com/o/oauth2/token';
}
/**
* Get the POST fields for the token request.
*
* @param string $code
* @return array
*/
protected function getTokenFields($code)
{
return array_add(
parent::getTokenFields($code), 'grant_type', 'authorization_code'
);
}
/**
* {@inheritdoc}
*/
protected function getUserByToken($token)
{
//fixing legacy google+ api
$response = $this->getHttpClient()->get('https://www.googleapis.com/oauth2/v3/userinfo?', [
'query' => [
'prettyPrint' => 'false',
],
'headers' => [
'Accept' => 'application/json',
'Authorization' => 'Bearer '.$token,
],
]);
return json_decode($response->getBody(), true);
}
/**
* {@inheritdoc}
*/
protected function mapUserToObject(array $user)
{
//fixing legacy google+ api
$user['id'] = Arr::get($user, 'sub');
$user['verified_email'] = Arr::get($user, 'email_verified');
$user['link'] = Arr::get($user, 'profile');
$avatarUrl = Arr::get($user, 'image.url');
return (new User)->setRaw($user)->map([
'id' => Arr::get($user, 'sub'),
'nickname' => Arr::get($user, 'nickname'),
'name' => Arr::get($user, 'name'),
'email' => Arr::get($user, 'email'),
'avatar' => $avatarUrl = Arr::get($user, 'picture'),
'avatar_original' => $avatarUrl,
]);
}
}
这篇关于Laravel Socialite:Legacy People API未在项目中使用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!