I'm a little confused when it comes to Slack Bots/Apps and authentication.
All I want to do is send some messages to a slack channel using the Slack WebApi.
https://api.slack.com/docs/oauth#bots states that you should use OAUTH2 to get an access token.
I went along with the fowlling url:
https://slack.com/oauth/authorize?client_id=123.456&scope=chat:write:bot&state=something&team=myteamidOn the consent screen I authorized the app and I was then being redirected to the botframework page because the app is also using microsoft's botframework.
Do I really need to go the long way and provide a custom redirect URI where slack can redirect back to to eventually get a token for my bot? :-/
Is there really no client_credentials flow or something less "interactive" (consent screen!)?