How to integrate Google services with Orbita

Orbita lets the Voice Experience developer integrate Google services with Orbita’s project. This allows the Voice Experience developer to retrieve or send data to Gooogle services. Orbita exposed a middleware function to get the JWT tokens from Google. You have to enable the Google services that you are going access using the JWT token.

For example, as a Voice Experience developer, you may want to export the completed survey data to Google drive (doc/sheet).

This document details how to integrate Google Drive with Orbita.

 

Integrate Google Drive with Orbita’s project.

Get JWT Token in Experience Designer

  1. Login to Orbita and open Experience Designer.

  2. Add the below code in the function node or import the sample flow attached.

var orbitaUtil = global.get('orbitaUtil'); var resPromise = orbitaUtil.getGoogleAuthJWTToken({ client_email: "<ABCD@EFGH.iam.gserviceaccount.com>", private_key: "-----BEGIN PRIVATE KEY-----\nMIIEvgIBADANBg...\n-----END PRIVATE KEY-----\n", scope: ["https://www.googleapis.com/auth/drive"]}); resPromise.then(function(resData){ msg.headers = {}; msg.headers = { "Authorization": `Bearer ${resData.access_token}`, "Accept": "application/json" }; node.warn(resData); node.send([msg, null]); }).catch(function(err){ node.error(err); node.send([null, msg]); });
  File Modified

File Sample flow to Get JWT token.json

Nov 25, 2019 by Rajkiran Alla

Create Private key

  1. Navigate to https://console.cloud.google.com/iam-admin/serviceaccounts and log in.

  2. Select the project you want to connect with Google services.

  3. Choose the service account from the list. Click on the vertical ellipses icon. Select Create key.

  4. Select JSON in the pop-up window. Select Create.

  5. A JSON file with the client email and the private key will get downloaded.

  6. Copy the client_email and private_key from the JSON file and paste them in the function node in the Experience Designer flow.

Enable Google Drive API

  1. Navigate to https://console.developers.google.com/apis/library/drive.googleapis.com

  2. Make sure the project is selected and Enable the Google Drive API.

     

You have successfully integrated Google drive with Orbita.

We recommend using the dynamic/content data to save the secret keys and retrieve the data using the Dynamic Manager node and pass it to function dynamically.

Related Articles