You are here

function OAuthConsumer::__construct in OAuth 1.0 6.3

Same name and namespace in other branches
  1. 6 OAuth.php \OAuthConsumer::__construct()
1 call to OAuthConsumer::__construct()
DrupalOAuthConsumer::__construct in includes/DrupalOAuthConsumer.inc
1 method overrides OAuthConsumer::__construct()
DrupalOAuthConsumer::__construct in includes/DrupalOAuthConsumer.inc

File

lib/OAuth.php, line 24
OAuth 1.0 server and client library.

Class

OAuthConsumer

Code

function __construct($key, $secret, $callback_url = NULL) {
  $this->key = $key;
  $this->secret = $secret;
  $this->callback_url = $callback_url;
}