Class yii\authclient\clients\Twitter
| Inheritance | yii\authclient\clients\Twitter » yii\authclient\OAuth1 » yii\authclient\BaseOAuth » yii\authclient\BaseClient » yii\base\Component |
|---|---|
| Implements | yii\authclient\ClientInterface |
| Available since version | 2.0 |
Twitter allows authentication via Twitter OAuth.
In order to use Twitter OAuth you must register your application at https://dev.twitter.com/apps/new.
Example application configuration:
'components' => [
'authClientCollection' => [
'class' => 'yii\authclient\Collection',
'clients' => [
'twitter' => [
'class' => 'yii\authclient\clients\Twitter',
'attributeParams' => [
'include_email' => 'true'
],
'consumerKey' => 'twitter_consumer_key',
'consumerSecret' => 'twitter_consumer_secret',
],
],
]
...
]
See also:
Public Properties
Public Methods
Protected Methods
| Method | Description | Defined By |
|---|---|---|
| apiInternal() | Performs request to the OAuth API. | yii\authclient\OAuth1 |
| composeAuthorizationHeader() | Composes authorization header content. | yii\authclient\OAuth1 |
| composeRequestCurlOptions() | Composes HTTP request CUrl options, which will be merged with the default ones. | yii\authclient\OAuth1 |
| composeSignatureBaseString() | Creates signature base string, which will be signed by \yii\authclient\signatureMethod. | yii\authclient\OAuth1 |
| composeSignatureKey() | Composes request signature key. | yii\authclient\OAuth1 |
| composeUrl() | Composes URL from base URL and GET params. | yii\authclient\BaseOAuth |
| convertXmlToArray() | Converts XML document to array. | yii\authclient\BaseOAuth |
| createSignatureMethod() | Creates signature method instance from its configuration. | yii\authclient\BaseOAuth |
| createToken() | Creates token from its configuration. | yii\authclient\BaseOAuth |
| defaultCurlOptions() | Returns default cURL options. | yii\authclient\BaseOAuth |
| defaultName() | Generates service name. | yii\authclient\clients\Twitter |
| defaultNormalizeUserAttributeMap() | Returns the default \yii\authclient\normalizeUserAttributeMap value. | yii\authclient\BaseClient |
| defaultReturnUrl() | Composes default \yii\authclient\returnUrl value. | yii\authclient\OAuth1 |
| defaultTitle() | Generates service title. | yii\authclient\clients\Twitter |
| defaultViewOptions() | Returns the default \yii\authclient\viewOptions value. | yii\authclient\BaseClient |
| determineContentTypeByHeaders() | Attempts to determine HTTP request content type by headers. | yii\authclient\BaseOAuth |
| determineContentTypeByRaw() | Attempts to determine the content type from raw content. | yii\authclient\BaseOAuth |
| generateCommonRequestParams() | Generate common request params like version, timestamp etc. | yii\authclient\OAuth1 |
| generateNonce() | Generates nonce value. | yii\authclient\OAuth1 |
| generateTimestamp() | Generates timestamp. | yii\authclient\OAuth1 |
| getState() | Returns persistent state value. | yii\authclient\BaseOAuth |
| getStateKeyPrefix() | Returns session key prefix, which is used to store internal states. | yii\authclient\BaseOAuth |
| initUserAttributes() | Initializes authenticated user attributes. | yii\authclient\clients\Twitter |
| mergeCurlOptions() | Merge CUrl options. | yii\authclient\BaseOAuth |
| normalizeUserAttributes() | Normalize given user attributes according to \yii\authclient\normalizeUserAttributeMap. | yii\authclient\BaseClient |
| processResponse() | Processes raw response converting it to actual data. | yii\authclient\BaseOAuth |
| removeState() | Removes persistent state value. | yii\authclient\BaseOAuth |
| restoreAccessToken() | Restores access token. | yii\authclient\BaseOAuth |
| saveAccessToken() | Saves token as persistent state. | yii\authclient\BaseOAuth |
| sendRequest() | Sends HTTP request. | yii\authclient\BaseOAuth |
| sendSignedRequest() | Sends HTTP request, signed by \yii\authclient\signatureMethod. | yii\authclient\OAuth1 |
| setState() | Sets persistent state. | yii\authclient\BaseOAuth |
| signRequest() | Sign request with \yii\authclient\signatureMethod. | yii\authclient\OAuth1 |
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
Access token HTTP method.
OAuth access token URL.
API base URL.
List of extra parameters, which should be used, while requesting user attributes from Twitter API. For example:
[
'include_email' => 'true'
]
See also https://dev.twitter.com/rest/reference/get/account/verify_credentials.
Authorize URL.
Request token HTTP method.
OAuth request token URL.
Method Details
Generates service name.
| protected string defaultName ( ) | ||
| return | string | Service name. |
|---|---|---|
Generates service title.
| protected string defaultTitle ( ) | ||
| return | string | Service title. |
|---|---|---|
Initializes authenticated user attributes.
| protected array initUserAttributes ( ) | ||
| return | array | Auth user attributes. |
|---|---|---|