Inheritance | yii\authclient\OAuthToken » yii\base\Object |
---|---|
Implements | yii\base\Configurable |
Available since version | 2.0 |
Source Code | https://github.com/yiisoft/yii2-authclient/blob/master/OAuthToken.php |
Token represents OAuth token.
Property | Type | Description | Defined By |
---|---|---|---|
$createTimestamp | integer | Object creation timestamp. | yii\authclient\OAuthToken |
$expireDuration | string | Token expiration duration. | yii\authclient\OAuthToken |
$expireDurationParamKey | string | Expire duration param key. | yii\authclient\OAuthToken |
$isExpired | boolean | Is token expired. | yii\authclient\OAuthToken |
$isValid | boolean | Is token valid. | yii\authclient\OAuthToken |
$params | array | yii\authclient\OAuthToken | |
$token | string | Token value. | yii\authclient\OAuthToken |
$tokenParamKey | string | Key in $params array, which stores token key. | yii\authclient\OAuthToken |
$tokenSecret | string | Token secret. | yii\authclient\OAuthToken |
$tokenSecretParamKey | string | Key in $params array, which stores token secret key. | yii\authclient\OAuthToken |
Method | Description | Defined By |
---|---|---|
__call() | Calls the named method which is not a class method. | yii\base\Object |
__construct() | Constructor. | yii\base\Object |
__get() | Returns the value of an object property. | yii\base\Object |
__isset() | Checks if a property is set, i.e. defined and not null. | yii\base\Object |
__set() | Sets value of an object property. | yii\base\Object |
__unset() | Sets an object property to null. | yii\base\Object |
canGetProperty() | Returns a value indicating whether a property can be read. | yii\base\Object |
canSetProperty() | Returns a value indicating whether a property can be set. | yii\base\Object |
className() | Returns the fully qualified name of this class. | yii\base\Object |
getExpireDuration() | Returns the token expiration duration. | yii\authclient\OAuthToken |
getExpireDurationParamKey() | yii\authclient\OAuthToken | |
getIsExpired() | Checks if token has expired. | yii\authclient\OAuthToken |
getIsValid() | Checks if token is valid. | yii\authclient\OAuthToken |
getParam() | Returns param by name. | yii\authclient\OAuthToken |
getParams() | yii\authclient\OAuthToken | |
getToken() | Returns token value. | yii\authclient\OAuthToken |
getTokenSecret() | Returns the token secret value. | yii\authclient\OAuthToken |
hasMethod() | Returns a value indicating whether a method is defined. | yii\base\Object |
hasProperty() | Returns a value indicating whether a property is defined. | yii\base\Object |
init() | Initializes the object. | yii\authclient\OAuthToken |
setExpireDuration() | Sets token expire duration. | yii\authclient\OAuthToken |
setExpireDurationParamKey() | yii\authclient\OAuthToken | |
setParam() | Sets param by name. | yii\authclient\OAuthToken |
setParams() | yii\authclient\OAuthToken | |
setToken() | Sets token value. | yii\authclient\OAuthToken |
setTokenSecret() | Sets the token secret value. | yii\authclient\OAuthToken |
Method | Description | Defined By |
---|---|---|
defaultExpireDurationParamKey() | Fetches default expire duration param key. | yii\authclient\OAuthToken |
Object creation timestamp.
public integer $createTimestamp = null
Token expiration duration.
public integer getExpireDuration ( )
public void setExpireDuration ( $expireDuration )
Expire duration param key.
public string getExpireDurationParamKey ( )
public void setExpireDurationParamKey ( $expireDurationParamKey )
Is token expired.
public boolean getIsExpired ( )
Is token valid.
public boolean getIsValid ( )
public array getParams ( )
public void setParams ( array $params )
Token value.
public string getToken ( )
public $this setToken ( $token )
Key in $params array, which stores token key.
public string $tokenParamKey = 'oauth_token'
Token secret.
public string getTokenSecret ( )
public void setTokenSecret ( $tokenSecret )
Key in $params array, which stores token secret key.
public string $tokenSecretParamKey = 'oauth_token_secret'
Fetches default expire duration param key.
protected string defaultExpireDurationParamKey ( ) | ||
---|---|---|
return | string |
Expire duration param key. |
Returns the token expiration duration.
public integer getExpireDuration ( ) | ||
---|---|---|
return | integer |
Token expiration duration. |
public string getExpireDurationParamKey ( ) | ||
---|---|---|
return | string |
Expire duration param key. |
Checks if token has expired.
public boolean getIsExpired ( ) | ||
---|---|---|
return | boolean |
Is token expired. |
Checks if token is valid.
public boolean getIsValid ( ) | ||
---|---|---|
return | boolean |
Is token valid. |
Returns param by name.
public mixed getParam ( $name ) | ||
---|---|---|
$name | string |
Param name. |
return | mixed |
Param value. |
public array getParams ( ) |
---|
Returns token value.
public string getToken ( ) | ||
---|---|---|
return | string |
Token value. |
Returns the token secret value.
public string getTokenSecret ( ) | ||
---|---|---|
return | string |
Token secret value. |
Initializes the object.
This method is invoked at the end of the constructor after the object is initialized with the given configuration.
public void init ( ) |
---|
Sets token expire duration.
public void setExpireDuration ( $expireDuration ) | ||
---|---|---|
$expireDuration | string |
Token expiration duration. |
public void setExpireDurationParamKey ( $expireDurationParamKey ) | ||
---|---|---|
$expireDurationParamKey | string |
Expire duration param key. |
Sets param by name.
public void setParam ( $name, $value ) | ||
---|---|---|
$name | string |
Param name. |
$value | mixed |
Param value, |
public void setParams ( array $params ) | ||
---|---|---|
$params | array |
Sets token value.
public $this setToken ( $token ) | ||
---|---|---|
$token | string |
Token value. |
return | $this |
The object itself |
Sets the token secret value.
public void setTokenSecret ( $tokenSecret ) | ||
---|---|---|
$tokenSecret | string |
Token secret. |
© 2008–2017 by Yii Software LLC
Licensed under the three clause BSD license.
http://www.yiiframework.com/doc-2.0/yii-authclient-oauthtoken.html