I have a slack app which renders a form broken into multiple pages. For each modal form submission , I receive a view_submission event. I revert with a new view Object to this callback api.
Reference : https://slack.dev/java-slack-sdk/guides/modals
Now, on the last page modal view . I want to show a screen which shows multiple analytical details which can't be calculated within 3 seconds of allowed limit. So , I want to render a partial view and then update it asynchronously with some mechanism . Please help.
Things I have tried already .
- Respond with a view object with a view_id (slack wouldn't allow this)