You are here

function OAuthConsumer::__construct in OAuth 1.0 6

Same name and namespace in other branches
  1. 6.3 lib/OAuth.php \OAuthConsumer::__construct()

File

./OAuth.php, line 14

Class

OAuthConsumer

Code

function __construct($key, $secret, $callback_url = NULL) {

  /*{{{*/
  $this->key = $key;
  $this->secret = $secret;
  $this->callback_url = $callback_url;
}