Functions
Function | Description |
---|---|
__toString |
Returns the Tweet's content when this object is treated as a string. |
delete |
Deletes the tweet from Twitter. |
favorite |
Favorites the tweet. |
retweet |
Causes the authenticated user to retweet the tweet. |
retweets |
Returns retweets of the tweet. |
retweeters |
Returns a list of Twitter user IDs for users who retweeted this tweet. |
unfavorite |
Unfavorites the tweet. |
__toString
Returns the Tweet's content when this object is treated as a string.
__toString()
delete
Deletes the tweet from Twitter.
The authenticated user must own the tweet.
Return Value: True if successful.
delete()
retweet
Causes the authenticated user to retweet the tweet.
Return Value: True if successful.
retweet()
retweets
Returns retweets of the tweet.
Return Value: An array of BigTreeTwitterTweet objects.
retweets()
retweeters
Returns a list of Twitter user IDs for users who retweeted this tweet.
Return Value: An array of Twitter IDs
retweeters()
unfavorite
Unfavorites the tweet.
Return Value: A BigTreeTwitterTweet object if successful.
unfavorite()