前提・実現したいこと
slackに画像付きファイルをuser token を使って添付したい。
発生している問題・エラーメッセージ
エラーは表示されないが、送信されていない。
該当のソースコード
python
1png_1 = './hogehoge/hogehogeランキング.png' 2 3plt.savefig(png_1) 4 5# ファイル名 6filename = 'test' 7 8access_token = 'xoxp-hogehoge' 9channel_id = 'hogehoge' 10 11 12files = {'file': open(png_1, 'rb')} 13param = { 14 'token': access_token, 15 'channels': channel_id, 16 'filename': filename, 17 # Botのメッセージ 18 'initial_comment': "test upload", 19 # Slack上のタイトル 20 'title': "test_title" 21} 22 23requests.post(url="https://slack.com/api/files.upload", params=param, files=files)
試したこと
https://miyabikno-jobs.com/slackbot-upload-file/
を参照した
hogehogefolderには投稿したい画像は保存されている
補足情報(FW/ツールのバージョンなど)
user_tokenは
admin
channels:history
channels:read
channels:write
chat:write
files:read
files:write
groups:history
groups:read
groups:write
を追加済み
現在
{'ok': False, 'error': 'invalid_auth'}
が出ている状況です
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/12/28 02:24
2021/12/28 02:38
2021/12/28 04:49
2021/12/28 07:21