function OAuthToken::__construct in OAuth 1.0 7.3
Same name and namespace in other branches
- 6.3 lib/OAuth.php \OAuthToken::__construct()
- 6 OAuth.php \OAuthToken::__construct()
key = the token secret = the token secret
1 call to OAuthToken::__construct()
- DrupalOAuthToken::__construct in includes/
DrupalOAuthToken.inc - key = the token secret = the token secret
1 method overrides OAuthToken::__construct()
- DrupalOAuthToken::__construct in includes/
DrupalOAuthToken.inc - key = the token secret = the token secret
File
- lib/
OAuth.php, line 46 - OAuth 1.0 server and client library.
Class
Code
function __construct($key, $secret) {
$this->key = $key;
$this->secret = $secret;
}