You are here

function OAuthToken::__construct in jQuery social stream 8

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

key = the token secret = the token secret

File

src/Twitter/OAuthToken.php, line 14

Class

OAuthToken

Namespace

Drupal\jquery_social_stream\Twitter

Code

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