statusesRetweetsOfMe() публичный Метод

Returns the most recent tweets authored by the authenticating user that have recently been retweeted by others. This timeline is a subset of the user's GET statuses/user_timeline.
public statusesRetweetsOfMe ( int[optional] $count = null, string[optional] $sinceId = null, string[optional] $maxId = null, bool[optional] $trimUser = null, bool[optional] $includeEntities = null, bool[optional] $includeUserEntities = null ) : array
$count int[optional]
$sinceId string[optional]
$maxId string[optional]
$trimUser bool[optional]
$includeEntities bool[optional]
$includeUserEntities bool[optional]
Результат array
Пример #1
0
 /**
  * Tests Twitter->statusesRetweetsOfMe()
  */
 public function testStatusesRetweetsOfMe()
 {
     $response = $this->twitter->statusesRetweetsOfMe(2);
     $this->assertEquals(count($response), 2);
     foreach ($response as $row) {
         $this->isTweet($row);
     }
 }