I'm having an issue with Messenger dev platform and guessed I could ask you guys for some help.
I would like my bot to send multiple messages in a row, for exemple :
sendTextMessage(user, "Hello");
sendTextMessage(user, "Goodbye");
But since Node is asynchrone, the order is not always respected and sometimes 'Goodbye' ends up showing before 'Hello'.
What is the best solution to remedy this issue ?
Thanks for your help!