class OAuthConsumer in jQuery social stream 8.2
Same name and namespace in other branches
- 8 src/Twitter/OAuthConsumer.php \Drupal\jquery_social_stream\Twitter\OAuthConsumer
Hierarchy
- class \Drupal\jquery_social_stream\Twitter\OAuthConsumer
Expanded class hierarchy of OAuthConsumer
File
- src/
Twitter/ OAuthConsumer.php, line 5
Namespace
Drupal\jquery_social_stream\TwitterView source
class OAuthConsumer {
public $key;
public $secret;
function __construct($key, $secret, $callback_url = NULL) {
$this->key = $key;
$this->secret = $secret;
$this->callback_url = $callback_url;
}
function __toString() {
return "OAuthConsumer[key={$this->key},secret={$this->secret}]";
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
OAuthConsumer:: |
public | property | ||
OAuthConsumer:: |
public | property | ||
OAuthConsumer:: |
function | |||
OAuthConsumer:: |
function |