Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道用户 A 的特定追随者 B 收藏了多少条推文。有没有办法使用 Pythontweepy或 R来做到这一点rtweet?
tweepy
rtweet
非常感谢!
你可以这样做,但它有点复杂。
你需要使用GET favorites/list
GET favorites/list
这将使您获得多达 200 条用户 B 喜欢的推文。然后,您必须搜索返回的推文以查看用户 A 发布了哪些推文。
收藏夹的Tweepy 文档告诉您如何执行此操作:
tweets = API.favorites("edent")
会给你我喜欢的所有推文。