function OAuthConsumer::__construct in OAuth 1.0 6.3
Same name and namespace in other branches
- 6 OAuth.php \OAuthConsumer::__construct()
1 call to OAuthConsumer::__construct()
1 method overrides OAuthConsumer::__construct()
File
- lib/
OAuth.php, line 24 - OAuth 1.0 server and client library.
Class
Code
function __construct($key, $secret, $callback_url = NULL) {
$this->key = $key;
$this->secret = $secret;
$this->callback_url = $callback_url;
}