gpt4 book ai didi

python - 使用 Tweepy - Python 回复推文

转载 作者:IT老高 更新时间:2023-10-28 21:06:51 26 4
gpt4 key购买 nike

我似乎无法回复特定的推文:

auth = tweepy.OAuthHandler(CONSUMER_KEY, CONSUMER_SECRET)
auth.set_access_token(ACCESS_KEY, ACCESS_SECRET)

api = tweepy.API(auth)

### at this point I've grabbed the tweet and loaded it to JSON...

tweetId = tweet['results'][0]['id']

api.update_status('My status update',tweetId)

api 说它接受可选参数,而 in_reply_to_status_id 是第一个,但它似乎完全忽略了它。此脚本将发布更新状态,但不会将其链接为对我传递的 tweetId 的回复。

引用API:http://code.google.com/p/tweepy/wiki/APIReference#update_status

有人有什么想法吗?我觉得我在这里遗漏了一些简单的东西......

提前致谢。

最佳答案

只是发布解决方案,这样其他人就不会像我一样受苦。Twitter 更新了 API 并添加了一个名为 auto_populate_reply_metadata 的选项

您需要做的就是将其设置为 true,其余部分保持不变。这是一个示例:

api.update_status(status = 'your reply', in_reply_to_status_id = tweetid , auto_populate_reply_metadata=True)

另外,status_id 是推文 URL 末尾的一长串数字。祝你好运!

关于python - 使用 Tweepy - Python 回复推文,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9322465/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com