Skip to content

Instantly share code, notes, and snippets.

@silvolu
Created March 17, 2018 00:41
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save silvolu/47f13dae8503ac7d03964ec2cf8a3b8c to your computer and use it in GitHub Desktop.
Save silvolu/47f13dae8503ac7d03964ec2cf8a3b8c to your computer and use it in GitHub Desktop.
Publish Actions on Google V2 apps from AWS Lambda
const { dialogflow } = require('actions-on-google')
const app = dialogflow()
exports.factsAboutGoogle = app
@ccchhheeemmmaaa
Copy link

Hi,

Can send all Lambda function?

I try serverless with express and all combinations of actions v2... And review actions library to see aws adaptation. And throw 502

"dependencies": { "actions-on-google": "2.0.0-alpha.4"

handler.js

const { dialogflow } = require('actions-on-google');
const app = dialogflow();

app.intent('Default Welcome Intent', (conv) => {
con.ask('Hi!!');
});
exports.fulfillment = app;

Simulator, dialogflow /actions on google

@ajayarjun-bka
Copy link

@ccchhheeemmmaaa were you able to resolve it

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment