我正在使用Slack实时消息传递API与Python,并希望在频道上向用户发送消息,使用@like @hellobot创建目录test2002。
给定的代码不起作用:
slack_client.api_call("chat.postMessage", channel='#bot',text="create directory test2002",username='ecstesting1989')
如果我使用:
slack_client.api_call("chat.postMessage", channel='#bot',text="@hellobot create directory test2002",username='ecstesting1989')
这将以文本格式将命令发送为@hellobot创建目录test2002,但不起作用。