簡単な質問に答えたり、サーバー上でタスクを実行したりする Slack ボットを作成したいと考えています。これが私が試したことです
token = "i-put-my-bot-token-here" # found at https://api.slack.com/#auth)
sc = SlackClient(token)
sc.api_call("chat.postMessage", channel="magic", text="Hello World!")
私が作成したボット アカウントではなく、Slackbot として投稿されたのですか?
また、Pythonライブラリによると、メッセージを聞くと、
if sc.rtm_connect():
while True:
print sc.rtm_read()
time.sleep(1)
else:
print "Connection Failed, invalid token?"
または、代わりに着信 Webhook を使用する必要がありますか?