OAuthConsumer.php in jQuery social stream 8
Same filename and directory in other branches
Namespace
Drupal\jquery_social_stream\TwitterFile
src/Twitter/OAuthConsumer.phpView source
<?php
namespace Drupal\jquery_social_stream\Twitter;
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}]";
}
}
Classes
Name | Description |
---|---|
OAuthConsumer |