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
{{ message }}
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.
When using botbuilder-adapter-facebook with Botkit 4, the quick_replies field on outgoing messages does not work as expected when used with BotkitConversation
This is caused by an improper mapping of those fields into the "SuggestedResponses" field.
This may also apply to the WebAdapter which also uses quick_replies.
This only pertains to using BotkitConversation, it works fine using bot.reply
A temporary workaround: put quick_replies field inside channelData field:
convo.ask({text: ['What is your favorite color'],channelData: {quick_replies: [{...}]}},[],'key');
The text was updated successfully, but these errors were encountered:
When using botbuilder-adapter-facebook with Botkit 4, the
quick_replies
field on outgoing messages does not work as expected when used withBotkitConversation
This is caused by an improper mapping of those fields into the "SuggestedResponses" field.
This may also apply to the WebAdapter which also uses quick_replies.
This only pertains to using
BotkitConversation
, it works fine using bot.replyA temporary workaround: put quick_replies field inside
channelData
field:The text was updated successfully, but these errors were encountered: