You are here

public function Twitter::retweets_of_me in Twitter 7.6

Same name and namespace in other branches
  1. 6.5 twitter.lib.php \Twitter::retweets_of_me()
  2. 7.5 twitter.lib.php \Twitter::retweets_of_me()

Returns the most recent tweets authored by the authenticating user that have recently been retweeted by others.

Parameters

array $params: an array of parameters.

See also

https://dev.twitter.com/docs/api/1.1/get/statuses/retweets_of_me

File

./twitter.lib.php, line 374
Integration layer to communicate with the Twitter REST API 1.1. https://dev.twitter.com/docs/api/1.1

Class

Twitter
Primary Twitter API implementation class

Code

public function retweets_of_me($params = array()) {
  return $this
    ->get_statuses('statuses/retweets_of_me', $params);
}