Class to represent an OAuth Token. More...
Public Member Functions | |
| __construct ($key, $secret) | |
| key = the token secret = the token secret More... | |
| to_string () | |
| generates the basic string serialization of a token that a server would respond to request_token and access_token calls with More... | |
| __toString () | |
Data Fields | |
| $key | |
| $secret | |
Class to represent an OAuth Token.
Definition at line 12 of file OAuthToken.php.
| __construct | ( | $key, | |
| $secret | |||
| ) |
key = the token secret = the token secret
Definition at line 22 of file OAuthToken.php.
References OAuthToken\$key, and OAuthToken\$secret.
| __toString | ( | ) |
Definition at line 38 of file OAuthToken.php.
References OAuthToken\to_string().
| to_string | ( | ) |
generates the basic string serialization of a token that a server would respond to request_token and access_token calls with
Definition at line 31 of file OAuthToken.php.
References OAuthUtil\urlencode_rfc3986().
Referenced by OAuthToken\__toString().
| $key |
Definition at line 15 of file OAuthToken.php.
Referenced by OAuthToken\__construct().
| $secret |
Definition at line 16 of file OAuthToken.php.
Referenced by OAuthToken\__construct().