我創建了一個應用程序在一個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
。但我還沒有建立網站/網頁。
如何在第二個帳戶上驗證此應用程序?
我創建了一個應用程序在一個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
。但我還沒有建立網站/網頁。
如何在第二個帳戶上驗證此應用程序?
您必須使用OAuth身份驗證流程。 爲此,您首先需要使用https://api.twitter.com/oauth/request_token
(doc:https://dev.twitter.com/oauth/reference/post/oauth/request_token)請求Consumer Key
和Consumer Secret
之間的認證鏈接。
當您收到回調或代碼時,您可以使用它們執行第號查詢,如https://dev.twitter.com/oauth/reference/post/oauth/access_token所述。您將需要使用oauth_verifier
參數。
請記住,Twitter中的身份驗證不是一個簡單的過程,您應該在Twitter上閱讀更多關於它的內容(https://dev.twitter.com/oauth/3-legged)或使用可以爲您做到這一點的庫。