Reputation: 11
Has anyone done any connection between Dialogflow and Google Sheets API? I need to save user input to a google sheet. Any documentation, examples, experience is appreciated. I am assuming I should connect through a webhook
Upvotes: 1
Views: 3873
Reputation: 529
Yes, there is a sample available on Dialogflow's Github page here for some guidance on getting started. According to the Google Sheets API reference documentation and depending on your circumstances, you'll either need to use .append or .update for write operations. A crucial step will be sharing the specific sheet with the service account client email address provided to you in the private key json file.
Upvotes: 2