Esempio n. 1
0
 public function __construct($oauthToken, $oauthTokenSecret, $favicon = '')
 {
     parent::__construct($GLOBALS['consumer_key'], $GLOBALS['consumer_secret'], $oauthToken, $oauthTokenSecret);
     //		parent::__construct("ndvFZa81FGaS49OBMulBA", "GFFtJWcmobhfI4DhgVLbeSB7isyO9Oj2xMlJmApEzEU",    '14475497-XVPcDfAWLEhFTGtETO2h0LBbf6zARqkd3JhlAOZue', 'vE52jnsJNCO61ChqZ80ZOMzd7jHfvNe7nT4mkABVg4');
     if ($favicon != '') {
         $this->favicon = $favicon;
     } else {
         $this->favicon = "images/favicons/" . $this->plugin_name . ".ico";
     }
 }
Esempio n. 2
0
 public function __construct()
 {
     try {
         $this->credentials = \Sifo\Config::getInstance()->getConfig('twitter_oauth', \Sifo\Domains::getInstance()->getDomain());
         parent::__construct($this->credentials['consumer_key'], $this->credentials['consumer_secret']);
         $this->useAsynchronous(true);
         $this->setTimeout($this->credentials['request_timeout'], $this->credentials['connection_timeout']);
     } catch (\Exception $e) {
         throw new \Sifo\Exception_500($e->getMessage());
     }
 }
Esempio n. 3
0
 public function __construct($params = array())
 {
     $this->consumer_key = $params['consumer_key'];
     $this->consumer_secret = $params['consumer_secret'];
     if (isset($params['oauthToken'])) {
         $this->oauthToken = $params['oauthToken'];
     } else {
         $this->oauthToken = null;
     }
     if (isset($params['oauthTokenSecret'])) {
         $this->oauthTokenSecret = $params['oauthTokenSecret'];
     } else {
         $this->oauthTokenSecret = null;
     }
     parent::__construct($this->consumer_key, $this->consumer_secret, self::EPITWITTER_SIGNATURE_METHOD);
     $this->setToken($this->oauthToken, $this->oauthTokenSecret);
 }
Esempio n. 4
0
 public function __construct()
 {
     return parent::__construct(self::CONSUMER_KEY, self::CONSUMER_SECRET);
 }
Esempio n. 5
0
 /**
  * Setup Twitter client connection details
  *
  * Ensure you set a user agent, whether via the constructor or by assigning a value to the property directly.
  * Also, if you are not running this from the Eastern timezone, be sure to set your proper timezone.
  *
  * @access public
  * @since 2.0
  * @return Twitter_Lists
  */
 public function __construct($oauth_consumer_key, $oauth_consumer_secret, $oauth_token = null, $oauth_token_secret = null, $user_agent = null, $headers = null, $timezone = 'America/New_York', $debug = false)
 {
     parent::__construct($oauth_consumer_key, $oauth_consumer_secret, $oauth_token, $oauth_token_secret, $user_agent, $headers, $timezone, $debug);
 }