Most bot tutorials are for people who can code, so if you don’t have developers or staff with extra time on their hands your custom needs may not be met. Building a bot requires technical resources, such as servers to run the logic, storage to store data points and developers, well, to code. Until now. In this tutorial, we’ll show how you can build a survey bot right from a Google Sheet.
Instead of using a server to run your bot logic (which is actually easy, but it requires maintenance), use Google as your hosting environment on your behalf and use Google Sheets to keep track of the survey answers!
Google Apps Script is a JavaScript-based scripting language that lets you add functionality to your Google Apps. It is a cloud‑based language that integrates with all other Google services, including Gmail, Google Drive, Calendar, Google Forms, Sheets and more. Apps Script is incredibly versatile. It allows you to:
- Add custom menus, dialogs, and sidebars to Google Docs, Sheets and Forms
- Write custom functions for Google Sheets. Like fetch extra data from external services or even plot some sophisticated charts
- Publish web apps — either standalone or embedded in Google Sites
- Interact with other Google services, including AdSense, Analytics, Calendar, Drive, Gmail and Maps
https://docs.google.com/spreadsheets/d/187abmrkYlgoDZrYPChgQZiG2btfi98YPWrYYMF42UpQ/edit?usp=sharing
In Google Sheets, Click File
> Make a copy
...
This should give you something like this:
Note: Feel free to change the name of the
Copy
to anything you want, it will not affect the outcome.
- Access Token - Use the Access Token which you got during the Account creation.
- Bot Name - Be creative!
- Bot Avatar URL - URL of the survey avatar. Avatar size should be no more than 100 kb. Recommended 720x720
- Welcome to survey message - This is the welcome message which the user will receive from the survey bot
- Welcome start button - Call on the user to begin interacting with the bot
- End survey message - This is the message the bot will send at the end of the survey. It is generally a “Thank you” message
- Do not understand message - This message will be sent if the user enters invalid input (a picture, sticker, etc.)
- Should keyboard use random colors - Should the bot use random colors for different survey answer options or not. Acceptable values are
true
orfalse
- Default keyboard option color - In case you choose not to use random color, you can set the default color here. Please use
Color Hex
format only. For example#999999
This is the difference between a keyboard with specific colors versus one generated with random colors:
Our survey bot supports three (3) different types of questions: range
, keyboard
and text
:
-
range
- Asks the user to enter a valid value from a custom range. It makes sense to provide a range when the user needs to score something. -
keyboard
- Show case different selection options via the Viber's keyboard. -
text
- Free text input.
Each row in the spreadsheet equals to a survey question and ordered by sequence. Hence the first row (after the header) will contain the first question, while the 7th row will contain the seventh question.
Adding a range
question
-
Under the
type
column writerange
-
Under the
question
column write your question. Best practice is to mention the actual valid range. -
Under the
extras
column write the acceptable values, separated by semicolons. For example0;1;2;3
.
Adding a keyboard
question
-
Under the
type
column writekeyboard
-
Under the
question
column write your question. -
Under the
extras
column write the options, separated by semicolons. For exampleYes;No
.
Adding a text
question
Open the Script editor...
by clicking "Tools
" > "Script editor...
"
Select the latest project version to deploy.
Note: You must select the
Anyone, even anonymous
option for the "Who has access to the app" dropdown or form responses will not be added to the spreadsheet!
Copy the web app URL to your clipboard / note pad. Then Click "OK".
Viber chat API console is a helper site set up for this integration, specifically to help you set up a WebHook. This way Viber will know to communicate with your Sheet.
Select the Set a WebHook
operation, paste your web app URL from the previous step and click the Apply
button to make the change.
Done. That's it. You just created your very own survey chat bot! Your survey answers will populate on the answers
sheet.
Feel free to customize the code, add more question types, improve the flow or even accept pictures as valid input!
If you find any issues with this sample, please open an issue on GitHub.