gpt4 book ai didi

python - 使用 twython 回复给定的推文

转载 作者:太空宇宙 更新时间:2023-11-03 18:34:38 25 4
gpt4 key购买 nike

如何使用 twython 发布对任何 Twitter ID 的回复?

这个很棒的 twython 库在 Twitter 上发布状态更新的方法如下 -

    try:
a = twitter.update_status(status=message)
return HttpResponse("1", content_type='text/plain')
except TwythonError as e:
return HttpResponse(e, content_type='text/plain')

只是想知道,如何使用 twython 回复推文?

最佳答案

假设您有 Twitter ID,您只需将 in_reply_to_status 添加到 update_status 函数即可。

try:
a = twitter.update_status(status=message, in_reply_to_status_id=twitter_id)
return HttpResponse("1", content_type='text/plain')
except TwythonError as e:
return HttpResponse(e, content_type="'text/plain')

可以找到here .

此外,您应该查看 twython 包中的 endpoints.py 以获取使用 Twython 的更多功能。

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

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