Esempio n. 1
0
 public function __construct($consumerKey = null, $consumerSecret = null, $oauthToken = null, $oauthTokenSecret = null)
 {
     parent::__construct($consumerKey, $consumerSecret, self::EPITWITTER_SIGNATURE_METHOD);
     $this->setToken($oauthToken, $oauthTokenSecret);
 }
Esempio n. 2
0
 public function __construct($consumer_key, $consumer_secret, $access_token, $access_token_secret)
 {
     $consumerKey = $consumer_key;
     $consumerSecret = $consumer_secret;
     $oauthToken = $access_token;
     $oauthTokenSecret = $access_token_secret;
     parent::__construct($consumerKey, $consumerSecret, self::EPITWITTER_SIGNATURE_METHOD);
     $this->setToken($oauthToken, $oauthTokenSecret);
 }
Esempio n. 3
0
 public function __construct($consumer_key = null, $consumer_secret = null, $oauth_access_token_key = null, $oauth_access_token_secret = null)
 {
     parent::__construct($consumer_key, $consumer_secret, self::EPI_TUMBLR_SIGNATURE_METHOD);
     $this->setToken($oauth_access_token_key, $oauth_access_token_secret);
 }
Esempio n. 4
0
 public function __construct($consumer_key, $consumer_secret)
 {
     parent::__construct($consumer_key, $consumer_secret);
 }