I'm implementing a Facebook Messenger Chatbot, and in one of the conversation flows, the bot is supposed to send 6 messages, one after the other.
I'd like those messages to be delayed by 1 second, and between them, display a sender action, to make the conversation feel natural (vs. dumping 6 messages all at once, which forces the user to scroll up to read them all).
I tried 2 different webhook implementations, but neither of them work. One was in Python/Flask: between each message, I've put time.sleep(delay)
, but it didn't work. The other was in Javascript/NodeJS: between each message, I've put setTimeout(function() {sendMessage(recipient_id);}, delay)
, but it also didn't work. Both versions work perfectly without the delay.
Can anyone help?
You can use settimeout for such scenarios. But for showing sender_action let's say if you want to show text like
typing...
from the bot inside messenger then facebook provides functionalities in its messenger API to include sender actions with different tags. Here is how I am doing it.Please look into the following link for more information. https://developers.facebook.com/docs/messenger-platform/send-messages/sender-actions