Skip to content

Commit

Permalink
docs(tweets): ✅ Add docs to get tweet retweets
Browse files Browse the repository at this point in the history
  • Loading branch information
MerleLiuKun committed Nov 21, 2023
1 parent fb13504 commit c75c981
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ Now covers these features:
- Tweet lookup
- Manage Tweets
- Quote Tweets
- Retweet Tweets
- Timelines
- Search Tweets
- Tweet counts
Expand Down
7 changes: 7 additions & 0 deletions docs/docs/usage/tweets/retweet.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,10 @@ my_api.remove_retweet_tweet(user_id=my_api.auth_user_id, tweet_id="target tweet
api.get_tweet_retweeted_users(tweet_id="target tweet id")
# Response(data=[User(id='1301152652357595137', name='realllkk520', username='realllkk520')])
```

## Tweet retweeted tweets

```python
api.get_tweet_retweeted_tweets(tweet_id="target tweet id")
# Response(data=[Tweet(id=1724975633908789418, text=RT @XDevelopers: You can now monitor your usage...), Tweet(id=1724805194280730931, text=RT @XDevelopers: You can now monitor your usage...)])
```

0 comments on commit c75c981

Please sign in to comment.