Reputation: 6004
I would like to build a simple Google Assistant Action with Dialogflow that lets users answer 10 questions and give them the result at the end.
My concept:
Do I need to use the Firebase Cloud Function Fulfillment for that? Any feedback is really appreciated.
Upvotes: 0
Views: 1357
Reputation: 136
You are not obligated to use the Firebase Cloud. You can use your own external https API connection to your own server where you could host all of your questions and answers.
Though in fact using the Firebase Cloud is easier to start with!
I am very new to GoA and Dialogflow development but i read in the docuentation that there is some kind of read/write storage thing available.
Yesterday i found out about JOVO and they even work with MongoDB or some other minimal stoarge solution - i still have not found out hwo they mange to put that inside an action, but it looks promising.
Upvotes: 0
Reputation: 1554
Yes, you need to use the Firebase Cloud Function Fulfillment to develop a function to get all the "yes" and "no", you can follow this tutorial and then change the Datastore insert part to count how many "yes" are.
Upvotes: 1