當前位置: 首頁>>代碼示例>>PHP>>正文


PHP TwitterOAuth::create方法代碼示例

本文整理匯總了PHP中TwitterOAuth::create方法的典型用法代碼示例。如果您正苦於以下問題:PHP TwitterOAuth::create方法的具體用法?PHP TwitterOAuth::create怎麽用?PHP TwitterOAuth::create使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在TwitterOAuth的用法示例。


在下文中一共展示了TwitterOAuth::create方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: ajax_get_recent_tweets

 public function ajax_get_recent_tweets()
 {
     if ($this->input->is_ajax_request()) {
         // loading third party twitter api library
         require APPPATH . 'third_party/Twitter/Twitteroauth.php';
         $twitteroauth = new TwitterOAuth();
         $consumer_key = $this->config->item('consumer_key');
         $consumer_secret = $this->config->item('consumer_secret');
         $access_token = $this->config->item('access_token');
         $access_token_secret = $this->config->item('access_token_secret');
         $hash_tag = $this->config->item('hash_tag');
         $tweets_per_page = $this->config->item('tweets_per_page');
         $connection = $twitteroauth->create($consumer_key, $consumer_secret, $access_token, $access_token_secret);
         //$content = $connection->get('account/verify_credentials');
         $data = array('q' => $hash_tag, 'result_type' => 'mixed', 'count' => $tweets_per_page);
         $result = $connection->get('search/tweets', $data);
         //echo "<pre>";
         if (isset($result->statuses) && count($result->statuses) > 0) {
             print_r(json_encode($result->statuses));
         } else {
             print_r(json_encode(array('status' => 'error')));
         }
         exit;
     } else {
         exit('No direct script access allowed');
     }
 }
開發者ID:puncoz,項目名稱:android.ingnepal.org,代碼行數:27,代碼來源:Pages.php


注:本文中的TwitterOAuth::create方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。