Twitter

statuses/update

statuses/updateで、ツイートを投稿する。POST statuses/update — Twitter Developers Twitter REST APIの使い方credentials.hで、API_KEY、API_SECRET、ACCESS_TOKEN、ACCESS_TOEKN_SECRET、を指定。main.cppで、投稿する文字列を入力。署名キーの作成から…

oauth/access_token

oauth/access_tokenでアクセストークンを取得する。POST oauth/access_token — Twitter Developers Twitter REST APIの使い方credentials.hは、main.cppは、oauth_token、oauth_token_secret、oauth_verifier、を入力して、署名キー作成から、レスポンス読み…

oauth/request_token

oauth/request_tokenでリクエストトークンを取得する。POST oauth/request_token — Twitter Developers https://syncer.jp/Web/API/Twitter/REST_API/#section-2-4credentials.hに、API_KEY、API_SECRET、CALLBACK_URLを指定。main.cppに、署名キーの作成か…

statuses/user_timeline

statuses/user_timelineでユーザタイムラインを取得する。GET statuses/user_timeline — Twitter Developers Twitter REST APIの使い方credentials.hで、ベアラートークンを指定。main.cppで、GETリクエストの作成から、レスポンスの読み込みまで。Sample/tw…

oauth2/token

oauth2/tokenでベアラートークンを取得する。POST oauth2/token — Twitter Developers Twitter REST APIの使い方VisualStudioでOpenSSLをリンクに追加したら、credentials.hに、APIキーとAPIシークレットを指定。main.cppで、クレデンシャル作成から、レスポ…