如何使用twitter api v1.1查找用户的推文总数


How to find total tweets of a user using twitter api v 1.1?

嗨,我想找到一个用户的推特总数——例如,在这里你可以看到推特计数是14。我有api键,我只想要api调用。

我编码到这个

        $twitteruser = "Username";
        $notweets = 5000;
        $consumerkey = "#########################";
        $consumersecret = "###############################";
        $accesstoken = "####################################";
        $accesstokensecret = "$$$$$$$$$$$$$$$$$$$$$$$$$$$";
        function getConnectionWithAccessToken($cons_key, $cons_secret, $oauth_token, $oauth_token_secret) {
          $connection = new TwitterOAuth($cons_key, $cons_secret, $oauth_token, $oauth_token_secret);
          return $connection;
        }
        $connection = getConnectionWithAccessToken($consumerkey, $consumersecret, $accesstoken, $accesstokensecret);
         //
        $following = $connection->get("https://api.twitter.com/1.1/friends/ids.json?cursor=-1&screen_name=".$twitteruser."&count=".$notweets);
        echo'<pre>'; echo count($following->ids);
        $followers = $connection->get("https://api.twitter.com/1.1/followers/ids.json?cursor=-1&screen_name=".$twitteruser."&count=".$notweets);
        echo'<pre>'; echo count($followers->ids);

我得到了follwoers计数和following计数,现在我想要总的tweet计数,知道怎么得到吗?

看看这个:

$user = $connection->get("https://api.twitter.com/1.1/users/show.json?screen_name=".$twitteruser);
$following = intval($user->friends_count);
$followers = intval($user->followers_count);
$tweets = intval($user->statuses_count);