【2022/10/14・15 現在】
大まかな流れ:
1. Twitter APIの申請
2. Tweepyライブラリのインストール
3. コーディング(.pyの作成)
4. 動かす
◆ 後から分かった、参照すべき 作り方説明ページ
はじめてのTwitter API【Botを作ろう】 | ClassyNode
◆ 参考にしたコード
【Python】Twitter API v2を使ってツイートする | いざどりのtrial and error
pythonでtwitter APIを使って自動投稿する方法【サンプルコードあり】|python-manブログ
【Python】Twitterに指定時間にて自動投稿(ツイート)する方法を解説!
◆引っかかった点
1. Twitter APIの申請
2. Tweepyライブラリのインストール
・「pip install tweepy」
Windows Power Shell 上で、「python -m pip install tweepy」。
3. コーディング(.pyの作成)
・consumer_keyとconsumer_secret
tweepyとは?tweepyでできること7選|初心者向け を参照してください。
「tweepy使用のスタートライン!APIオブジェクトの作成までを解説」 >> 「②consumer key、consumer secret keyを取得する」
・エラーメッセージ「tweepy.errors.Forbidden: 403 Forbidden」
「tweepy.errors.Forbidden: 403 Forbidden
When authenticating requests to the Twitter API v2 endpoints, you must use keys and tokens from a Twitter developer App that is attached to a Project. You can create a project via the developer portal.」
Twitter Developers の「Projects」から「Elevated」の申請が要る。
#python の global変数での値の渡しがうまく働かないので、結局、return で対処する。
— TAKAGI-1 高木 一 (@takagi1) October 15, 2022
4. 動かす
・サーバー上で動かすのだと思っていたが、自PC(ローカル)で動かす。