-
Notifications
You must be signed in to change notification settings - Fork 255
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support likes and retweets endpoints. #588
Conversation
For most cases it won't matter, but it might include details about API errors that could be important?
Also, is it just me, or does nothing in the API show how many tweets a user has liked? It's visible in the web view of a profile, but apparently it's not the public_metrics field? |
Okay, I've done some more testing (and had someone else do some experimentation) and added some more explanatory docs, should be ready to merge if everyone else is happy? |
This looks awesome @SamHames. One thing I've noticed is that we've started to have some inconsistency between snake_case and kebab-case in the cli. I would prefer if we use kebab -- any objections? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks good! I just adjusted the cli and docs to use kebab-case.
This is great! Thanks again! |
This will add support for the newly useful like and retweets endpoints, that now allow retrieving all of the likes and retweets of a specific tweet, or retrieve a specific users likes.
This implementation uses the Twitter API naming of these functions (ie what's in the URLs) for consistency.
closes #403 (kind of?)
closes #466