Updates the authenticating user's current status, also known as tweeting Docs: https://developer.twitter.com/en/docs/tweets/post-and-engage/api-reference/post-statuses-update
(self, **params)
| 114 | return self.post('statuses/destroy/%s' % params.get('id')) |
| 115 | |
| 116 | def update_status(self, **params): |
| 117 | """Updates the authenticating user's current status, also known as tweeting |
| 118 | |
| 119 | Docs: |
| 120 | https://developer.twitter.com/en/docs/tweets/post-and-engage/api-reference/post-statuses-update |
| 121 | |
| 122 | """ |
| 123 | return self.post('statuses/update', params=params) |
| 124 | |
| 125 | def retweet(self, **params): |
| 126 | """Retweets a tweet specified by the ``id`` parameter |