概要:
このガイドでは、更新された 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>
重要な考慮事項:
以上がOAuth で認証し、Twitter API v1.1 を使用してユーザーのタイムラインをリクエストする方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。