Twitter API twython:使用不同的帐户发布推文

时间:2018-04-21 16:06:42

标签: python twitter twython

我可以使用简单的代码发布推文:

tweeter = twython.Twython("Consumer_Key", "Consumer_Secret",
                          "Acess_Token","Acess_Token_Secret")
tweeter.update_status(status="I am so excited for the new Interchange Map!")

问题是,推文将发布在我的个人资料中。 我的问题是,我可以在其他帐户上发布推文,但使用我的密钥和令牌吗?像这样:

tweeter = twython.Twython("Consumer_Key", "Consumer_Secret",
                          "Acess_Token","Acess_Token_Secret")
account = tweeter.login("username", "passwort")
account.update_status(status="I am so excited for the new Interchange Map!")

1 个答案:

答案 0 :(得分:0)

密钥和令牌与特定帐户绑定,因此您无法执行此操作。