You are here

class sOAuthConsumer in jQuery social stream 7

Same name and namespace in other branches
  1. 7.2 jquery_social_stream.js.inc \sOAuthConsumer

Hierarchy

Expanded class hierarchy of sOAuthConsumer

File

./jquery_social_stream.js.inc, line 335
JS callbacks.

View source
class sOAuthConsumer {
  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 "sOAuthConsumer[key={$this->key},secret={$this->secret}]";
  }

}

Members