java-slack-sdk
java-slack-sdk copied to clipboard
Slack Developer Kit (including Bolt for Java) for any JVM language
trying out a simple slack API within a module, but seeing this problem ``` Error: Modules jslack.api.client and jslack.api.model export package com.github.seratch.jslack.common.json to module okio ``` it doesn't seem like...
The Slack API for `emoji.list` has an option for `include_categories`, but the SDK does not support that option. Note: As of 8/20, https://api.slack.com/methods/emoji.list does not mention this option, however, https://api.slack.com/methods/admin.emoji.list...
How do you configure proxy for Bolt Java SDK? Able to set url using below but getting auth error ``` SlackConfig config = new SlackConfig(); config.setProxyUrl("http://myproxy"); Slack slack = Slack.getInstance(config);...
https://github.com/TakahikoKawasaki/nv-websocket-client looks well-maintained and there are at least 450+ public projects using it as of today. We can consider adding this library support as the 3rd backend for SocketModeClient. The...
When I use in my project: ``` tyrus-standalone-client 2.0.0 slack-api-client 1.7.0 ``` i receive: ``` *************************** APPLICATION FAILED TO START *************************** Description: An attempt was made to call a method...
### Issue Type - [x] Bug - [ ] Enhancement / Feature request - [ ] Question - [ ] Documentation ### Description https://oss.sonatype.org/service/local/repositories/releases/archive/com/slack/api/slack-api-client/1.0.6/slack-api-client-1.0.6-javadoc.jar/!/com/slack/api/Slack.html#send-java.lang.String-com.slack.api.webhook.Payload- When accessing the Javadoc websites hosted...
Some of the unit tests for Bolt modules may fail when the host has some env variables such as `SLACK_CLIENT_ID`, `SLACK_CLIENT_SECRET`, and so on. We can improve it to be...
I'm working on example with a distributed application. I know I can use `InstallationService` to get the bot information but is there a method to list all the installed bots...
I'm working with DatePickerElement as an input element and there’s the requirement to restrict the selection of past dates for users. The best example is datepicker in Outlook Calendar bot:...
I have an `App` with a `WorkflowStep` that I pass into the constructor of a class that extends `SlackApiLambdaHandler`. I have tested the App locally so I know that app...