概述:
本指南詳細介紹如何使用更新的 API v1.1 和 OAuth 驗證存取 Twitter 資料。 由於 Twitter API v1 已過時,因此此方法對於現代 Twitter 開發至關重要。我們將使用 HttpWebRequest
物件進行示範。
OAuth 驗證:
取得使用者時間軸:
程式碼範例片段:
<code class="language-csharp">// Replace with your actual keys and screen name string oAuthConsumerKey = "yourConsumerKey"; string oAuthConsumerSecret = "yourConsumerSecret"; string oAuthUrl = "//m.sbmmt.com/link/f055c54d16a8cc75a8cc996511cc9a9c"; // ... // Construct Authentication Header string authHeaderFormat = "Basic {0}"; // ... // Construct Timeline URL string timelineFormat = "https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name={0}&include_rts=1&exclude_replies=1&count=5"; // ... public class TwitAuthenticateResponse { public string token_type { get; set; } public string access_token { get; set; } }</code>
重要注意事項:
以上是如何使用 Twitter API v1.1 透過 OAuth 進行身份驗證並請求使用者的時間軸?的詳細內容。更多資訊請關注PHP中文網其他相關文章!