2016-08-13 66 views

回答

1

您必須使用OAuth身份驗證流程。 爲此,您首先需要使用https://api.twitter.com/oauth/request_token(doc:https://dev.twitter.com/oauth/reference/post/oauth/request_token)請求Consumer KeyConsumer Secret之間的認證鏈接。

當您收到回調或代碼時,您可以使用它們執行第號查詢,如https://dev.twitter.com/oauth/reference/post/oauth/access_token所述。您將需要使用oauth_verifier參數。

請記住,Twitter中的身份驗證不是一個簡單的過程,您應該在Twitter上閱讀更多關於它的內容(https://dev.twitter.com/oauth/3-legged)或使用可以爲您做到這一點的庫。