检索Twitter粉丝的更快捷方式?

时间:2012-06-06 15:43:02

标签: php twitter

我编写了以下代码来检索用户的Twitter粉丝。它适用于拥有150个或更少粉丝的用户(我已经使用多个帐户进行了测试)

但是,如果用户拥有超过500个关注者,则脚本需要花费很多时间来加载,有时由于PHP的最长执行时间而超时。

我想找到一个更好的方法来做这个,我不想编辑我的php.ini来增加允许的执行时间。

<?php
   $cursor = -1;
   $account_from = 'twitter';
   do
   {
     $json = file_get_contents('http://api.twitter.com/1/followers/ids.json?cursor='.$cursor.'&screen_name='.$account_from.'');
     $accounts = json_decode($json);

     foreach ($accounts->ids as $account)
      {
        $a[] = $account ; 
      }

      $cursor = $accounts->next_cursor;


    }while ($cursor > 0);


    $n = ceil(count($a) / 100) ; 
    $b = array_chunk($a, 100) ; 



    for($i=0 ; $i<$n ; $i++) {

        $user = ''; 

        for($j=0 ; $j<count($b[$i]) ; $j++) {

                    $user =  $user.$b[$i][$j].',' ;


        }

        $json=file_get_contents('http://api.twitter.com/1/users/lookup.json?user_id='.$user.'') ;
        $fo= json_decode($json);

        foreach ($fo as $key => $jsons) {

             foreach($jsons as $key => $value) {

                     if($key == 'screen_name'){

                             $arr[] = $value;

                    }


            }


        }




    }

    echo "<pre>" ; 
    print_r($arr) ;

?>

2 个答案:

答案 0 :(得分:1)

根据documentation

  

强烈建议您使用POST来处理更大的请求。

我发现超过50个用户ID的任何内容都需要使用POST。

答案 1 :(得分:0)

当每个关注者都需要第二个json请求时,无论您如何优化代码,都无法更快地执行脚本。 HTTP请求的响应时间是您的瓶颈。

最重要的解决方案是做一些parallel请求。