You are here

function OAuthConsumer::__construct in jQuery social stream 8

Same name and namespace in other branches
  1. 8.2 src/Twitter/OAuthConsumer.php \Drupal\jquery_social_stream\Twitter\OAuthConsumer::__construct()

File

src/Twitter/OAuthConsumer.php, line 9

Class

OAuthConsumer

Namespace

Drupal\jquery_social_stream\Twitter

Code

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