I’m setup simple button in slack message.
here is code:
{
"blocks": [
{
"type": "section",
"text": {
"type": "plain_text",
"text": "Hello! Press the Button",
"emoji": true
}
},
{
"type": "actions",
"elements": [
{
"type": "button",
"text": {
"type": "plain_text",
"text": "Buttong",
"emoji": true
},
"url": "https://make.com"
}
]
}
]
}
When I’m press the button in slack all goes well, but i get error message againts button.

Any advices to fix it? Thanks.
This is a weird and known issue with Slack and interactions.
Maybe adding, a webhooks that returns 200 OK will solve the issue for this. Got through this forum and see if you can figure out the issue with this,
Thanks. I’m use Slack send message action and I don’t understand where to get it from and where to use it. Can someone explane it…