使用松弛 api 从所有可能的松弛组中检索数据
Retrieving data from all possible slack groups using slack api
有没有办法从所有可能的松弛组中获取数据?我正在做一个项目,我想从特定类型的松弛组中挖掘数据。假设我想从所有 Python 相关组获取数据——其中一些我可能不属于。
有没有办法用 Slack 做到这一点 API?
您无法查看或访问您不是会员的私人频道。
您可以通过 conversations.list
API, and you can read the messages using the conversations.history
API.
获得您有权访问的频道列表
有没有办法从所有可能的松弛组中获取数据?我正在做一个项目,我想从特定类型的松弛组中挖掘数据。假设我想从所有 Python 相关组获取数据——其中一些我可能不属于。
有没有办法用 Slack 做到这一点 API?
您无法查看或访问您不是会员的私人频道。
您可以通过 conversations.list
API, and you can read the messages using the conversations.history
API.