Joseph Cheung
Joseph Cheung
And we can chain multi-step conversation like this: ```ruby expect(client).to receive_message( message.message_with_text("hello") ) .as_service("facebook") .and_send_replies([ { "recipient" => { "id" => message.sender_id }, "message" => { "text" => "Hello World!"...
FYI This is how MS Bot Framework does it https://docs.microsoft.com/en-us/azure/bot-service/nodejs/bot-builder-nodejs-proactive-messages?view=azure-bot-service-3.0
Ideally should be platform agnostic i.e. a Facebook user can be connected to a Twilio user. Right now I’m doing it on a custom channel (I wrote a custom Stealth...
Right now I'm doing it this way, first I create a custom message type called `trigger` which would step to the flow, state and params based on the message body....
Ideally we can make another session to `step_to` / `update_session_to` a specific flow / state with params in the current session without the need to make a custom message type,...
@mgomes Thanks for your answer. I'm not integrating Slack but Chat API which is an unofficial WhatsApp API provider. I want this feature because I want to send a private...