見出し画像

X(Twitter)API取得方法

X(Twitter)をBOT運用するにはAPIキーを取得する必要があります。
この記事では
API_KEY
API_KEY_SECRET
ACCESS_TOKEN
ACCESS_TOKEN_SECRET
OAuth2の
CLIENT_ID
CLIENT_SECRET
を取得する方法を紹介します。
Google Apps Script(GAS)との連帯を前提としています。

まずはDeveloper Platformにアクセス


Developer Portalを選択します

Sign up for FreeAccoutを選択

同意を入れます、下記のように3つチェックチェックを付けてください。

申請理由はこの通り入れてください。審査されることは無いので大丈夫です。

I plan to create an automated bot for my Twitter account. The main purpose of this bot is to schedule and post content that is beneficial to other users at specific times each day. This will significantly improve the efficiency of my daily operations. By automating this aspect of my social media strategy, I can maintain a strong online presence while allocating more time to other important tasks.

歯車ボタンを押します。

SettingからSet Upを押します(一度入力するとEditになっています)

URLを入力します
①②に入れる内容を下記に説明します。

①にはGASのスクリプトIDを入れます。
連帯したいGoogle Apps Scriptを開きます。
歯車マークを押します

IDをコピーします

①のCallback URI / Redirect URLには次にように入れてください。

https://script.google.com/macros/d/スクリプトID/usercallback

②のWebsite URLは次にように入れてください(何でもいい)

https://x.com

SAVEをすると次の画面でKEYが表示されます。

次にAPI Key and API Key Secretを取得します


次にAccess Token and Access Token Secretを取得します


まとめ

以上でX(Twitter) BOTに必要なAPIを取得できました

API_KEY
API_KEY_SECRET
ACCESS_TOKEN
ACCESS_TOKEN_SECRET
CLIENT_ID
CLIENT_SECRET

をそれぞれBOTの設定に入れてください。
BOTの中身は近日公開します

この記事が気に入ったらサポートをしてみませんか?