Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I share my slack app between my workspaces?

I've just created an app (slash command) and install it in one of my workspaces. But now I want to add the same app to another one. Is it possible without distribution to App Directory?

like image 209
pavolve Avatar asked Feb 25 '18 10:02

pavolve


1 Answers

If you want to add you Slack app to another workspace, you can do so without going through the process of placing it on the App directory.

All you need to do is

  1. add the ability to install your app to an workspace using OAuth 2.0.
  2. enable public distribution

So instead of clicking "Install app to this workspace", which works great for private Slack app, which live in one workspace only, you need a script than can be called from a web browser to run the Oauth installation routine. This is usually done by adding a Slack button to your website.

You also need to enable "public distribution" for your app. Note, that is not the same as putting them on the App Directory, which requires submitting your app and undergoing a review by the Slack team.

like image 154
Erik Kalkoken Avatar answered Oct 27 '22 01:10

Erik Kalkoken