I have created a template in domain.yml -
utter_pizzas:
-
text: “Pizza Name: {pizza_name} with \n Description: {description}”
image: “{image_url}”
In facebook messenger when the user queries to get a list of pizzas an action is run in which i call -
dispatcher.utter_template(“utter_pizzas”, tracker, image_url=obj[‘imgPath’], pizza_name=obj[‘name’], description=obj[‘description’])
the obj is the object which I get from some backend query (GET response)
The text is getting populated but the image in facebook messenger in not showing.
Can anyone please help?