speaks
speaks

Reputation: 1

Can the Microsoft bot framework access the Slack web API methods?

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

Answers (1)

Lars
Lars

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

Related Questions