Hello, it is probably a simple problem but I cannot solve it. I am developing in RASA 1.8. I have connected to facebook messenger without any problem, but it only works to show texts.
I can’t get it to show buttons, attachments, elements, etc.
I am testing with ngrok free account on my notebook and in development mode on Facebook.
I don’t get any errors with Rasa Run in debug mode, it just only mentions that an SLL connection is open waiting for response.
My elemental code is:
elements = []
for item in data:
element = {"title": item, "payload": item}
elements.append (element)
dispatcher.utter_message (buttons = elements)
where item is a text
What am I doing wrong? .