twitter流API而不是搜索API

时间:2012-10-01 11:33:14

标签: php twitter

我正在使用twitters搜索API来查看使用我想要查看的特定主题标签的所有推文。

但是,我想使用流函数,因此,我只获得最近的函数,因此,我可以存储它们。

  <?php
        global $total, $hashtag;
        $hashtag = $_POST['hash'];
        $total = 0;
        function getTweets($hash_tag, $page) {
              global $total, $hashtag;
              $url = 'http://search.twitter.com/search.json?q='.urlencode($hash_tag).'&';
              $url .= 'page='.$page;    
              $ch = curl_init($url);
              curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
              $json = curl_exec ($ch);
              curl_close ($ch);
              echo "<pre>";    
              $json_decode = json_decode($json);
              print_r($json_decode->results);

              $json_decode = json_decode($json);        
              $total += count($json_decode->results);    
              if($json_decode->next_page){
                   $temp = explode("&",$json_decode->next_page);        
                   $p = explode("=",$temp[0]);                
                   getTweets($hashtag,$p[1]);
              }        
        }

        getTweets($hashtag,1);
        echo $total;
  ?>

以上代码是我用来搜索我想要的推文的。

我需要做些什么来改变它,以便我可以改为发送推文?

我知道我必须使用流网址https://api.twitter.com/1.1/search/tweets.json, 但在那之后我需要改变什么是我不知道该怎么做。

显然,我知道我需要编写数据库sql,但我想先捕获流并查看它。

我该怎么做?我一直在使用的代码对于捕获流没有任何好处吗?

1 个答案:

答案 0 :(得分:0)

似乎无法使用流API来获取主题标签。

使用搜索API几乎是唯一的解决方案。只需使用AJAX内容刷新即可获得所有新推文。除非您想将推文存储在数据库中,否则整体效果几乎相同,在这种情况下必须防止重复保存。