从 Slack 检索直接消息
Retrieve direct message from Slack
我需要检索直接消息(一对一聊天)
我创建了一个APP,但我只能检索
"is_channel": true,
"is_group": false,
"is_im": false,
"is_mpim": false,
我使用了 https://slack.com/api/users.conversations 和其他端点,但运气不佳。
为了检索直接消息,
您需要将 types
输入参数显式指定为 im
。
types 参数指定 API 应检索并提供响应的不同类型的对话。
默认情况下,如果您不指定任何类型参数,那么它只会显示 public 个频道
查看参数说明here
我需要检索直接消息(一对一聊天) 我创建了一个APP,但我只能检索
"is_channel": true,
"is_group": false,
"is_im": false,
"is_mpim": false,
我使用了 https://slack.com/api/users.conversations 和其他端点,但运气不佳。
为了检索直接消息,
您需要将 types
输入参数显式指定为 im
。
types 参数指定 API 应检索并提供响应的不同类型的对话。
默认情况下,如果您不指定任何类型参数,那么它只会显示 public 个频道
查看参数说明here