Open3

国会会議録BOTを作る

shimakaze_softshimakaze_soft

TwitterのAPIを使用するにはDeveloper-portalで申請をしないといけない。

https://developer.twitter.com/


主にこちらが参考になった

https://zenn.dev/kg0r0/articles/8b1cfe654a1cee#developer-portal

https://developer.twitter.com/en/portal/projects/<project_id>/apps/<application_id>/auth-settingsに移動すると、User authentication settingsというのが出てくる。

OAuth 1.0aOAuth 2.0のそれぞれの設定をする。

OAUTH 1.0A SETTINGSにあるApp permissionsは、Read and write and Direct messageに設定する。

Callback URI / Redirect URLWebsite URLは適当なURLを入力。

https://developer.twitter.com/en/portal/projects/<project_id>/apps/<application_id>/keysに移動して、全てのKEYを再生成する。

主に以下の5つを取得

  • API_KEY (Consumer Keys)
  • API_SECRET (Consumer Keys)
  • BEARER_TOKEN (Authentication Tokens)
  • ACCESS_TOKEN (Authentication Tokens)
  • ACCESS_SECRET (Authentication Tokens)