Laravel:覆盖Socialite Provider以添加新字段

时间:2017-04-24 10:57:02

标签: laravel laravel-socialite

我想扩展/覆盖我的LinkedInProvider.php(在vendor \ laravel \ socialite \ src \ Two中)以在Linkedin Request中添加新字段。

我使用以下代码创建了一个新的LinkedInProvider.php(在app \ Providers中):

namespace App\Providers;

use Illuminate\Support\Arr;
use Illuminate\Http\Request;
use Laravel\Socialite\Two\AbstractProvider;
use Laravel\Socialite\Two\ProviderInterface;
use Laravel\Socialite\Two\User;

class LinkedInProvider extends AbstractProvider implements ProviderInterface
{
/**
 * The scopes being requested.
 *
 * @var array
 */
protected $scopes = ['r_basicprofile', 'r_emailaddress'];

/**
 * The separating character for the requested scopes.
 *
 * @var string
 */
protected $scopeSeparator = ' ';

/**
 * The fields that are included in the profile.
 *
 * @var array
 */
protected $fields = [
    'id', 'first-name', 'last-name', 'formatted-name',
    'email-address', 'headline', 'location', 'industry', 'positions',
    'public-profile-url', 'picture-url', 'picture-urls::(original)',
];

/**
 * {@inheritdoc}
 */
protected function getAuthUrl($state)
{
    return $this->buildAuthUrlFromBase('https://www.linkedin.com/oauth/v2/authorization', $state);
}

/**
 * {@inheritdoc}
 */
protected function getTokenUrl()
{
    return 'https://www.linkedin.com/oauth/v2/accessToken';
}

/**
 * Get the POST fields for the token request.
 *
 * @param  string  $code
 * @return array
 */
protected function getTokenFields($code)
{
    return parent::getTokenFields($code) + ['grant_type' => 'authorization_code'];
}

/**
 * {@inheritdoc}
 */
protected function getUserByToken($token)
{
    $fields = implode(',', $this->fields);

    $url = 'https://api.linkedin.com/v1/people/~:('.$fields.')';

    $response = $this->getHttpClient()->get($url, [
        'headers' => [
            'x-li-format' => 'json',
            'Authorization' => 'Bearer '.$token,
        ],
    ]);

    return json_decode($response->getBody(), true);
}

/**
 * {@inheritdoc}
 */
protected function mapUserToObject(array $user)
{
    return (new User)->setRaw($user)->map([
        'id' => $user['id'], 'nickname' => null, 'name' => Arr::get($user, 'formattedName'),
        'email' => Arr::get($user, 'emailAddress'), 'avatar' => Arr::get($user, 'pictureUrl'),
        'avatar_original' => Arr::get($user, 'pictureUrls.values.0'),
    ]);
}

/**
 * Set the user fields to request from LinkedIn.
 *
 * @param  array  $fields
 * @return $this
 */
public function fields(array $fields)
{
    $this->fields = $fields;

    return $this;
}

}

但是现在,我发现了这个错误:

Type error: Argument 1 passed to Laravel\Socialite\Two\AbstractProvider::__construct() must be an instance of Illuminate\Http\Request, instance of Illuminate\Foundation\Application given, called in G:\laragon\www\localhost\vendor\laravel\framework\src\Illuminate\Foundation\ProviderRepository.php on line 201

我知道我可以安装Socialite Manager,但我只想覆盖字段列表以添加新字段(如位置和行业)

1 个答案:

答案 0 :(得分:0)

你不应该覆盖/扩展整个班级。在正在创建的Laravel\Socialite\Two\User对象中,有一个$user属性,其中包含提供程序发回的原始信息。

发出请求时,您可以在控制器方法中设置希望LinkedIn返回的字段:

public function redirectToProvider()
{
    $fields = [
        'id', 'first-name', 'last-name', 'formatted-name',
        'email-address', 'headline', 'location', 'industry',
        'public-profile-url', 'picture-url', 'picture-urls:(original)',
        'positions', 'summary' // <-- additional fields here
    ];

    return Socialite::driver('linkedin')->fields($fields)->redirect();
}

您可以看到请求的其他两个字段,位置和摘要,默认情况下不包含这些字段。

快乐的黑客攻击!

相关问题