cieslakdawid / actions-on-google-nodejs

Client library for Actions on Google using Node.js

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Actions On Google Client Library

This Actions On Google client library makes it easy to create your apps for the Google Assistant.

The client library supports both the Actions SDK webhook and API.ai fulfillment.

Setup Instructions

Actions SDK

  1. Import the appropriate class:
let ActionsSdkApp = require('actions-on-google').ActionsSdkApp;
  1. Create an instance:
const app = new ActionsSdkApp({request: request, response: response});

API.ai

  1. Import the appropriate class:
let ApiAiApp = require('actions-on-google').ApiAiApp;
  1. Create an instance:
const app = new ApiAiApp({request: request, response: response});

References and How to report bugs

How to make contributions?

Please read and follow the steps in the CONTRIBUTING.md.

License

See LICENSE.md.

Terms

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.

Google+

Actions on Google Developers Community on Google+ https://g.co/actionsdev.

About

Client library for Actions on Google using Node.js

License:Apache License 2.0


Languages

Language:JavaScript 100.0%