statusesShow() public method

Returns a single Tweet, specified by the id parameter. The Tweet's author will also be embedded within the tweet.
public statusesShow ( string $id, bool[optional] $trimUser = null, bool[optional] $includeMyRetweet = null, bool[optional] $includeEntities = null ) : array
$id string The numerical ID of the desired Tweet.
$trimUser bool[optional]
$includeMyRetweet bool[optional]
$includeEntities bool[optional]
return array
示例#1
0
 /**
  * Tests Twitter->statusesShow()
  */
 public function testStatusesShow()
 {
     $response = $this->twitter->statusesShow('210462857140252672');
     $this->isTweet($response);
 }