Class yii\authclient\clients\Live
Inheritance | yii\authclient\clients\Live » yii\authclient\OAuth2 » yii\authclient\BaseOAuth » yii\authclient\BaseClient » yii\base\Component » yii\base\Object |
---|---|
Implements | yii\authclient\ClientInterface, yii\base\Configurable |
Available since version | 2.0 |
Source Code | https://github.com/yiisoft/yii2-authclient/blob/master/clients/Live.php |
Live allows authentication via Microsoft Live OAuth.
In order to use Microsoft Live OAuth you must register your application at https://account.live.com/developers/applications
Example application configuration:
'components' => [
'authClientCollection' => [
'class' => 'yii\authclient\Collection',
'clients' => [
'live' => [
'class' => 'yii\authclient\clients\Live',
'clientId' => 'live_client_id',
'clientSecret' => 'live_client_secret',
],
],
]
...
]
See also:
Public Properties
Public Methods
Protected Methods
Constants
Constant | Value | Description | Defined By |
---|---|---|---|
CONTENT_TYPE_AUTO | 'auto' | yii\authclient\BaseOAuth | |
CONTENT_TYPE_JSON | 'json' | yii\authclient\BaseOAuth | |
CONTENT_TYPE_URLENCODED | 'urlencoded' | yii\authclient\BaseOAuth | |
CONTENT_TYPE_XML | 'xml' | yii\authclient\BaseOAuth |
Property Details
Method Details
Generates service name.
string defaultName( ) | ||
return | string | Service name. |
---|
Generates service title.
string defaultTitle( ) | ||
return | string | Service title. |
---|
Initializes the object.
This method is invoked at the end of the constructor after the object is initialized with the given configuration.
void init( ) |
Initializes authenticated user attributes.
array initUserAttributes( ) | ||
return | array | Auth user attributes. |
---|