Reputation: 1
Is there a way for the Microsoft bot framework to get access to the web API methods in the Slack API (channel read for example)?
Upvotes: 0
Views: 504
Reputation: 10573
If your bot needs access to Slack specific APIs, it should call the Slack API directly using the bot credentials (Client ID and Client Secret) that Slack provided when you created the app. Going through BotFramework would add additional hops making your bot less performant.
Upvotes: 1