+------------------------------------------+--------------------------------------+
| `GET statuses/retweets/:id`_ | :meth:`API.get_retweets` |
+------------------------------------------+--------------------------------------+
- | `GET statuses/retweets_of_me`_ | :meth:`API.retweets_of_me` |
+ | `GET statuses/retweets_of_me`_ | :meth:`API.get_retweets_of_me` |
+------------------------------------------+--------------------------------------+
| `GET statuses/show/:id`_ | :meth:`API.get_status` |
+------------------------------------------+--------------------------------------+
.. automethod:: API.get_retweets
-.. automethod:: API.retweets_of_me
+.. automethod:: API.get_retweets_of_me
.. automethod:: API.get_status
def testmentionstimeline(self):
self.api.mentions_timeline()
- @tape.use_cassette('testretweetsofme.json')
- def testretweetsofme(self):
- self.api.retweets_of_me()
+ @tape.use_cassette('testgetretweetsofme.json')
+ def testgetretweetsofme(self):
+ self.api.get_retweets_of_me()
@tape.use_cassette('testretweetandunretweet.json')
def testretweetandunretweet(self):
@pagination(mode='id')
@payload('status', list=True)
- def retweets_of_me(self, **kwargs):
- """retweets_of_me(*, count, since_id, max_id, trim_user, \
- include_entities, include_user_entities)
+ def get_retweets_of_me(self, **kwargs):
+ """get_retweets_of_me(*, count, since_id, max_id, trim_user, \
+ include_entities, include_user_entities)
Returns the 20 most recent Tweets of the authenticated user that have
been retweeted by others.