You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't see how you would go about making a JBot publicly distributable? Would really appreciate some help.
I have added a redirect /authorization REST endpoint to the JBot project - when someone clicks on the "Add to slack" button which I have generated, this is the endpoint that gets called, which in turn calls https://slack.com/api/oauth.v2.access to get an access token - I'm doing this part successfully.
Looking at the SlackBot.java - it reads in the ${slackBotToken} from the properties file. But how can I get it to use the above mentioned access token instead?
Will I need to create a new instance of SlackBot each time it is distributed to a new user? With each instance storing a different access token? But it looks impossible to set the token before the @PostConstruct method in Bot.java runs...
Thanks
The text was updated successfully, but these errors were encountered:
Hi,
I don't see how you would go about making a JBot publicly distributable? Would really appreciate some help.
I have added a redirect /authorization REST endpoint to the JBot project - when someone clicks on the "Add to slack" button which I have generated, this is the endpoint that gets called, which in turn calls https://slack.com/api/oauth.v2.access to get an access token - I'm doing this part successfully.
Looking at the SlackBot.java - it reads in the ${slackBotToken} from the properties file. But how can I get it to use the above mentioned access token instead?
Will I need to create a new instance of SlackBot each time it is distributed to a new user? With each instance storing a different access token? But it looks impossible to set the token before the @PostConstruct method in Bot.java runs...
Thanks
The text was updated successfully, but these errors were encountered: