2016-03-21 14 views
0

私は次のコードを使用していますが、このコードは私にツイート、フォロワー、フォロワーの総数を与えていますが、現在は次のような日付まで2016-03-20まで どのようにすれば、指定された日付まですべてのフォローを得ることができますか?2016-03-20 fom twitter api

$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); 

答えて