class OAuthConsumer in OAuth 1.0 6
Same name and namespace in other branches
- 6.3 lib/OAuth.php \OAuthConsumer
Hierarchy
- class \OAuthConsumer
Expanded class hierarchy of OAuthConsumer
File
- ./
OAuth.php, line 10
View source
class OAuthConsumer {
/*{{{*/
public $key;
public $secret;
function __construct($key, $secret, $callback_url = NULL) {
/*{{{*/
$this->key = $key;
$this->secret = $secret;
$this->callback_url = $callback_url;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
OAuthConsumer:: |
public | property | ||
OAuthConsumer:: |
public | property | ||
OAuthConsumer:: |
function |