Block Kit is a UI framework for Slack apps that offers a balance of control and flexibility when building experiences in messages and other surfaces. Customize the order and appearance of information and guide users through your app's capabilities by composing, updating, sequencing, and stacking blocks — reusable components that work almost everywhere in Slack.
Questions tagged [slack-block-kit]
172 questions
0
votes
0 answers
Request url on my Slack app that is invoked on clicking a button requires basic auth
I have defined a request URL which gets triggerred whenever I click a button in my Slack channel.(** From the docs - Any interactions with shortcuts, modals, or interactive components (such as buttons, select menus, and datepickers) will be sent to…

Chanakya Hosamani
- 26
- 5
0
votes
0 answers
Obtaining Token from Frontend for Slack App (Node.js)
I have developed a Next.js application that communicates with a Java Spring Boot backend using JWT tokens for authentication. Additionally, I have implemented a Slack Bolt (Node.js) application for certain features. Now, I want to fetch data from my…

Osada
- 70
- 1
- 8
0
votes
1 answer
Slack bolt Modal complex input field
I am pretty new to the Slack bolt SDK and modals but I am running into an issue that I can't seem to find an solution too.I have a Slack app that has a button (action) on the home page that loads a modal to prompt the user for some inputs. The modal…

Russell917
- 3
- 1
0
votes
0 answers
Bad request 400 error with slack notification when there is a larger text in txt file in bitbucket
I have the txt file with the following content and I am creating it runtime in bitbucket pipeline.
+---------------+---------------+
| Percentile, % | Resp. Time, s |
+---------------+---------------+
| 0.0 | 0.125 |
| …

Smh
- 113
- 1
- 6
0
votes
1 answer
Slack API: block content that shows a link to existing channel
I've been using Jira automation to trigger various activities in Slack.
For example.
Set up a new Slack channel, using conversations.create, to set up a new public channel with a name based on the Jira issue's key (#issue-ABC-1234).
Send a message…

Andy Hall
- 11
0
votes
0 answers
confirm dialog not popping up on selecting datetimepicker
After sending the following payload to SlackClient's chat_postMessage, when selecting the datetimepicker that appears, no confirm dialog pops up. Instead, a response is immediately sent back.
{
"fromUsername": "NA",
"channel": "NA",
…

Thomas Wang
- 1
- 1
0
votes
0 answers
How to access forward information with bolt java library for slack
I am trying to use bolt java library to integrate forward information in my app. I have some problems to access the right field in the object.
First of all I fetch the message using Conversations.history…
0
votes
0 answers
Slack Java sdk - Disabling the button after the click. Using messageTs results in message_not_found error
Hello Slack java SDK Experts,
I have a button, in slack app which when clicked once should get disabled. I read about the ChatUpdateRequest where people have suggested using this for the purpose at hand.
W.r.t. code snippet below, the messageTs is…

Rax
- 323
- 1
- 5
- 17
0
votes
0 answers
Getting 'exchanged_trigger_id' error with Slack BoltJS when trying to reopen a modal
Good day!
I'm working on a slack app where you open a modal to view a list of goals.
Each goal has an edit button which pushes a new view onto the stack. When you submit that view it goes back to the first view and updates that with the new goal…

Wesley Smits
- 1,314
- 6
- 23
- 37
0
votes
0 answers
Slack Application Socket Mode with Quartz Scheduling
Creating a Slack Application in Java using Springboot and Quartz for scheduling.
Scheduler is not executing the job at specified time when the application is using Socket (using socket instead of a public end point to which slack can post…

AAKK
- 21
- 3
0
votes
0 answers
Slack slash command modal windows instantly returns an error
After submitting the modal, Slack instantly responds with {"ok":false,"error":"dispatch_failed"}.
My backend doesn't even receive the requests from Slack.
The app was working a few hours ago.
Is the problem on Slack's side?
from slack_bolt import…
0
votes
0 answers
How to show the file content in slack payload in the pipeline
I have the .txt and I am showing the content of file in slack using Bitbucket pipeline using the command below:
- pipe: atlassian/slack-notify:2.0.1
variables:
WEBHOOK_URL:…

Smh
- 113
- 1
- 6
0
votes
0 answers
slack bot that asks question and takes answer
Hi am trying to build a Slack bot that asks questions and takes answers, how do I achieve the below use case
My use case:
User: @MyBot start
Bot: question 1 (respond in threads or respond to channel)
User: Answer 1 (take this answer)
Bot: ask…

Mallikarjun
- 25
- 6
0
votes
1 answer
How do I add a tooltip to a button created using the Slack API?
I have created button using slack api.can we add tooltip text which will be displayed on moving mouse to button.I am not getting the option to add tooltip on button api.
I tried slack button api but did not work.I did not find to add tooltip to…
0
votes
1 answer
How to send a message to text area of slack but not autoposting?
How to send a message or put text to text area of slack but not autoposting ?
I am creating an slack app but unable to find such method or events ?
Please create or help me coding
response = client.chat_postMessage(
…

Rupesh Chaulagain
- 11
- 1