public function Twitter::retweets_of_me in Twitter 7.5
Same name and namespace in other branches
- 6.5 twitter.lib.php \Twitter::retweets_of_me()
- 7.6 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 349 - Integration layer to communicate with the Twitter REST API 1.1. https://dev.twitter.com/docs/api/1.1
Class
- Primary Twitter API implementation class
Code
public function retweets_of_me($params = array()) {
return $this
->get_statuses('statuses/retweets_of_me', $params);
}