我有一个python slack-client应用。
from slack import RTMClient
@RTMClient.run_on(event="message")
def say_hello(**payload):
print('hello')
token = ''
rtm_client = RTMClient(token=token)
我想要做的是print ('hello')
发送到每个可用频道中的每条新消息:
client = slack.WebClient(token=token)
channels = client.conversations_list()
但是目前,我只能在我的机器人已加入的频道中print
发送新消息。有办法吗?