Twitter APIを活用すると、プログラムからツイートしたり、他人のツイートを取得したりすることができます。
今回はPythonからTwitter APIにアクセスし、ツイートを投稿する方法を紹介していきます。サンプルコードも掲載しているため、コピペでも動かせますよ♪
Twitter APIに登録していない方はあらかじめ登録が必要です。Twitter APIへの登録方法は下の記事で紹介していますので、あらかじめ登録のうえAPIキーを取得しておいてください。
Twitter APIからツイートするには?
はじめにTwitter APIからツイートを投稿する仕組みを簡単に解説しておきます。
すぐに試したい方は読み飛ばしてもらって構いません。
Twitter APIからツイートを投稿するには、次のURLにJSONをPOSTします。
https://api.twitter.com/2/tweets
テキストを投稿したいときは、以下のようにtextキーに値をセットします。
{"text":"こんにちは"}
ほかのパラメータも利用できますが、ここではPythonから任意のテキストをツイートするサンプルを紹介していきます。
サンプルコード
さっそくPythonサンプルコードをご紹介しましょう。
from requests_oauthlib import OAuth1Session
import json
# APIキーを入力
consumer_key = 'ここにAPI Keyを入力'
consumer_secret = 'ここにAPI Key Secretを入力'
# ツイートの内容をセットする
payload = {"text": "こんにちは!"}
# Twitter APIにアクセスしてツイートする
# Get request token
request_token_url = "https://api.twitter.com/oauth/request_token?oauth_callback=oob&x_auth_access_type=write"
oauth = OAuth1Session(consumer_key, client_secret=consumer_secret)
try:
fetch_response = oauth.fetch_request_token(request_token_url)
except ValueError:
print(
"There may have been an issue with the consumer_key or consumer_secret you entered."
)
resource_owner_key = fetch_response.get("oauth_token")
resource_owner_secret = fetch_response.get("oauth_token_secret")
print("Got OAuth token: %s" % resource_owner_key)
# Get authorization
base_authorization_url = "https://api.twitter.com/oauth/authorize"
authorization_url = oauth.authorization_url(base_authorization_url)
print("Please go here and authorize: %s" % authorization_url)
verifier = input("Paste the PIN here: ")
# Get the access token
access_token_url = "https://api.twitter.com/oauth/access_token"
oauth = OAuth1Session(
consumer_key,
client_secret=consumer_secret,
resource_owner_key=resource_owner_key,
resource_owner_secret=resource_owner_secret,
verifier=verifier,
)
oauth_tokens = oauth.fetch_access_token(access_token_url)
access_token = oauth_tokens["oauth_token"]
access_token_secret = oauth_tokens["oauth_token_secret"]
# Make the request
oauth = OAuth1Session(
consumer_key,
client_secret=consumer_secret,
resource_owner_key=access_token,
resource_owner_secret=access_token_secret,
)
# Making the request
response = oauth.post(
"https://api.twitter.com/2/tweets",
json=payload,
)
if response.status_code != 201:
raise Exception(
"Request returned an error: {} {}".format(response.status_code, response.text)
)
print("Response code: {}".format(response.status_code))
# Saving the response as JSON
json_response = response.json()
print(json.dumps(json_response, indent=4, sort_keys=True))
Twitter公式GitHubに掲載されているサンプルを一部改変して作成しています。
実行する前にライブラリをインストールする必要がありますので、以下のコマンドを実行しておきましょう。
pip install requests
pip install requests-oauthlib
プログラムの先頭で、Twitter APIに登録したときに取得したAPIキーを定義しています。
# APIキーを入力
consumer_key = 'ここにAPI Keyを入力'
consumer_secret = 'ここにAPI Key Secretを入力'
ツイートしたいメッセージをJSONで定義します。
# ツイートの内容をセットする
payload = {"text": "こんにちは!"}
あとは上記コードを実行すると、ツイートされます。
なお、実行する際に認証が必要となります。コンソールに表示されるURLにアクセスし、ブラウザに表示されるPINコードを入力する必要があります。
まとめ
PythonからTwitter APIにアクセスし、ツイートを投稿する方法を紹介しました。
今回は単純なテキストをツイートするだけでしたが、紹介したコードを拡張していけば画像や位置情報なども投稿することができます。クラウドサービスなどに配置すれば、個人でも簡易的なボットを作成することができますので、ご活用していただければ幸いです。
コメント