前提・実現したいこと
こちらのサイトを参考に、Pythonを使ってチャットワークチャットワークの特定のグループからメッセージを取得
を試みています。
https://i-learn.jp/article/5532
発生している問題・エラーメッセージ
実行すると400が返ってきてしまいます。
エラーの原因はなんでしょうか。
該当のソースコード
import requests
import json
headers = {
'X-ChatWorkToken': 'xxxxxx',
}
response = requests.get('https://api.chatwork.com/v2/rooms/{xxxxx}/messages?force=0', headers=headers)
print(response.status_code)
if response.status_code==200:
data = response.json()
json_file = open('chat_log.json', 'a')
json.dump(data, json_file, indent=2, ensure_ascii=False)
with open('chat_log.json', 'a') as f:
f.write('\n')
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/03/17 07:11
2021/03/17 07:14
2021/03/17 07:18
2021/03/17 07:36
2021/03/17 07:37
2021/03/17 07:58