我在一个Twitter帐户上创建了一个应用程序。我想在不同的帐户上授权相同的应用程序。
FAQ on how to authorise apps说On the website of the application you want to connect, find the button/link asking you to connect your Twitter account
。但我还没有建立所说的网站/页面。
如何在第二个帐户上验证此应用?
答案 0 :(得分:1)
您必须使用OAuth身份验证流程。
为此,您首先需要使用Consumer Key
(文档:https://dev.twitter.com/oauth/reference/post/oauth/request_token)从Consumer Secret
和https://api.twitter.com/oauth/request_token
请求身份验证链接。
当您收到回调或代码时,您可以使用它们执行https://api.twitter.com/oauth/access_token
oauth_verifier
的第二个查询,如https://dev.twitter.com/oauth/reference/post/oauth/access_token所述。您需要使用help <functionname>
参数。
请记住,Twitter中的身份验证并不是一个简单的过程,您应该在Twitter(https://dev.twitter.com/oauth/3-legged)上阅读更多相关内容,或使用可以为您执行此操作的库。