Appointment Scheduler with BigQuery Integration
- In Dialogflow's console, go to settings ⚙ and under the general tab, you'll see the project ID section with a Google Cloud link to open the Google Cloud console. Open Google Cloud.
- In the Cloud console, go to the menu icon ☰ > APIs & Services > Library
- Select Google Calendar API and then Enable to enable the API on your cloud project.
- Under the menu icon ☰ > APIs & Services > Credentials > Create Credentials > Service Account Key.
- Under Create service account key, select New Service Account from the dropdown and enter
AppointmentCalendar
for the name and click Create. In the popup, select Create Without Role.- JSON file will be downloaded to your computer that you will need in the setup sections below.
- Open the JSON file that was downloaded in the previous section and copy the email address indicated by the
client_email
field
// Ex:
appointment-scheduler@${PROJECTID}.iam.gserviceaccount.com
- Open Google Calendar. On the left, next to Add a friend's calendar click the + and select New Calendar
- Enter
Appointment Calendar
for the name of the calendar and select Create Calendar. Next, go to theAppointment Calendar
calendar that will appear on the left column. - Paste the email copied from the previous step into the Add people field of the Share with specific people section and then select Make changes to events in the permissions dropdown and select Send.
- While still in Settings, scroll down and copy the Calendar ID in the Integrate Calendar section.
Go to the index.js
file in Dialogflow's Fulfillment section
Take the Calendar ID copied from the prior section and replace <INSERT CALENDAR ID HERE>
on line 24 of index.js
.
// Ex:
const calendarId = 'xxxxxxxxxxxxxxxxxxx0@group.calendar.google.com';
Next copy the contents of the JSON file downloaded in the "Service Account Setup" section and paste it into the empty object on line 25 of index.js
const serviceAccount = {}
.
//Ex:
const serviceAccount = {
"type": "service_account",
"project_id": "sample",
...
};
Click Deploy at at the bottom of the page.
- Go to the Google Cloud Console
- In the Cloud console, go to the menu icon ☰ > Big Data > BigQuery
- Under Resources on the left pane, click on the project ID, once selected, you will see CREATE DATASET on the right
- Click on CREATE DATASET and name it.
- Once the dataset is created, click on it from the left panel. You will see CREATE TABLE on the right.
- Click on CREATE TABLE, provide Table name and click Create table on the bottom of the screen.
- Once the table is created, click on the table from the left panel. You will see Edit Schema button on the right side.
- Click on Edit Schema button and click on Add Field button. Add "date" field and repeate the same for "time" and "type".
- Take note of the DatasetID and tableID
Go to following section of the index.js file and edit it with the BigQuery projectID, datasetID and tableID
/**
* TODO(developer): Uncomment the following lines before running the sample.
*/
//const projectId = '<INSERT your own project ID here>';
//const datasetId = "<INSERT your own dataset name here>";
//const tableId = "<INSERT your own table name here>";
In Dialogflow's console, in the simulator on the right, query your Dialogflow agent with Set an appointment at 4pm tomorrow for drivers license
and respond to the questions your Dialogflow agent asks.
After getting the required information, an appointment will be added to the "Appointment Calendar" calendar.
Check in the BigQuery table that the appointment details exist there as well.
Please read and follow the steps in the CONTRIBUTING.md.
See LICENSE.
This code is a sample, should not be used for any potential production workloads.
Your use of this sample is subject to, and by using or downloading the sample files you agree to comply with, the Google APIs Terms of Service.