我正在使用以下代码,但是这段代码给了我推特,关注和关注者的总数,但现在我希望得到所有关注,直到给定日期,如2016-03-20。 在给定的日期之前,我怎么可能得到所有的关注。
$connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, $access_token['oauth_token'], $access_token['oauth_token_secret']);
$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);