如何使用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回复给定的tweet,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21816986/