Class yii\authclient\clients\LinkedIn
Inheritance | yii\authclient\clients\LinkedIn » yii\authclient\OAuth2 » yii\authclient\BaseOAuth » yii\authclient\BaseClient » yii\base\Component » yii\base\BaseObject |
---|---|
Implements | yii\authclient\ClientInterface, yii\base\Configurable |
Available since version | 2.0 |
Source Code | https://github.com/yiisoft/yii2-authclient/blob/master/clients/LinkedIn.php |
LinkedIn allows authentication via LinkedIn OAuth.
In order to use linkedIn OAuth you must register your application at https://www.linkedin.com/secure/developer.
Example application configuration:
'components' => [
'authClientCollection' => [
'class' => 'yii\authclient\Collection',
'clients' => [
'linkedin' => [
'class' => 'yii\authclient\clients\LinkedIn',
'clientId' => 'linkedin_client_id',
'clientSecret' => 'linkedin_client_secret',
],
],
]
// ...
]
See also:
Public Properties
Property | Type | Description | Defined By |
---|---|---|---|
$apiBaseUrl | {@inheritdoc} | yii\authclient\clients\LinkedIn | |
$attributeNames | array | List of attribute names, which should be requested from API to initialize user attributes. | yii\authclient\clients\LinkedIn |
$authUrl | {@inheritdoc} | yii\authclient\clients\LinkedIn | |
$autoRefreshAccessToken | boolean | Whether to automatically perform 'refresh access token' request on expired access token. | yii\authclient\BaseOAuth |
$clientId | string | OAuth client ID. | yii\authclient\OAuth2 |
$clientSecret | string | OAuth client secret. | yii\authclient\OAuth2 |
$parametersToKeepInReturnUrl | array | List of the parameters to keep in default return url. | yii\authclient\BaseOAuth |
$scope | string | Auth request scope. | yii\authclient\BaseOAuth |
$tokenUrl | {@inheritdoc} | yii\authclient\clients\LinkedIn | |
$validateAuthState | boolean | Whether to use and validate auth 'state' parameter in authentication flow. | yii\authclient\OAuth2 |
$version | string | Protocol version. | yii\authclient\BaseOAuth |
Public Methods
Protected Methods
Property Details
List of attribute names, which should be requested from API to initialize user attributes.
Method Details
{@inheritdoc}
public void applyAccessTokenToRequest ( $request, $accessToken ) | ||
$request | ||
$accessToken |
{@inheritdoc}
protected void defaultName ( ) |
{@inheritdoc}
protected void defaultNormalizeUserAttributeMap ( ) |
{@inheritdoc}
protected void defaultTitle ( ) |
{@inheritdoc}
public void init ( ) |
{@inheritdoc}
protected void initUserAttributes ( ) |