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
Just found a solution provided by claudia.js that can handle the issue of getting timeout response for some requests:
Slack limits the time to the first slash command response to 3 seconds, which is a problem for longer tasks. If your command needs to talk to external resources that might get blocked, or genuinely need more time to complete, implementing everything in a single response won’t work.
Claudia Bot Builder, since version 1.4.0, offers a simple solution for delayed responses. This tutorial demonstrates how to work around the timing issues by using two important Claudia.js features:
Enabling recursive Lambda calls
Intercepting and modifying requests in API Builder
Just found a solution provided by claudia.js that can handle the issue of getting timeout response for some requests:
More info here