コード例 #1
0
ファイル: EpiTwitter.php プロジェクト: rifal89/twitter-async
 public function __construct($consumerKey = null, $consumerSecret = null, $oauthToken = null, $oauthTokenSecret = null)
 {
     parent::__construct($consumerKey, $consumerSecret, self::EPITWITTER_SIGNATURE_METHOD);
     $this->setToken($oauthToken, $oauthTokenSecret);
 }
コード例 #2
0
ファイル: Twitter.php プロジェクト: rjdjohnston/Little-Corner
 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);
 }
コード例 #3
0
ファイル: EpiTumblr.php プロジェクト: heatxsink/tumblr-async
 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);
 }
コード例 #4
0
ファイル: EpiOAuthTest.php プロジェクト: Lovinity/EQM
 public function __construct($consumer_key, $consumer_secret)
 {
     parent::__construct($consumer_key, $consumer_secret);
 }