Twitter API twython:Post 使用不同帐户的推文
Twitter API twython: Post a tweet with a different account
我可以 post 一条带有简单代码的推文:
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!")
问题是,这条推文将 post 出现在我的个人资料中。
我的问题是,我可以 post 在不同的帐户上发一条推文,但使用我的密钥和令牌吗?像这样:
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!")
密钥和令牌绑定到特定帐户,因此您不能这样做。
我可以 post 一条带有简单代码的推文:
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!")
问题是,这条推文将 post 出现在我的个人资料中。 我的问题是,我可以 post 在不同的帐户上发一条推文,但使用我的密钥和令牌吗?像这样:
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!")
密钥和令牌绑定到特定帐户,因此您不能这样做。