嗨我想找到一个用户的总数推文,例如在这里你可以看到推文数是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);
Run Code Online (Sandbox Code Playgroud)
我得到了follwoers计数和following数量现在我想要总计tweet数任何想法如何得到这个?
小智 6
看看这个:
$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);
Run Code Online (Sandbox Code Playgroud)