dialogflow / dialogflow-fulfillment-nodejs

Dialogflow agent fulfillment library supporting v1&v2, 8 platforms, and text, card, image, suggestion, custom responses
Apache License 2.0
598 stars 281 forks source link

How to make 'Card works like Suggestion' in dialogflow? #284

Closed fabio-C closed 4 years ago

fabio-C commented 4 years ago

The text in the Suggestion helps to move the next intent that has the text of Suggestion. new Suggestion(Option1)

But I want to make this same thing with Card button. How can I do it?

new Card {
    "buttonText": "Option1",
    "buttonUrl": "????????????",
    "imageUrl": "https://xxxxxxx.jpg",
    "text": "Text1",
    "title": "Title1"
},

Thanks!

fabio-C commented 4 years ago

SOLVED Just put a text as buttonUrl, and in Messanger it is treated as a suggestion.