通过Webhook将Google Home连接到node.js [英] Connecting Google Home via webhook to node.js

查看:143
本文介绍了通过Webhook将Google Home连接到node.js的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我关注这篇文章

https://medium.com/google-cloud/how-to-create-a-custom-private-google-home-action-260e2c512fc

,当我在Mac上的文件夹中运行npm start进行测试时,我得到了这个:

and I get this when I run npm start in my folder on my mac for testing I get this:

Marcios-MacBook-Pro:webhook mars$ npm start

> your-action-app@0.0.1 start /Users/mars/Downloads/webhook
> functions deploy yourAction --trigger-http

sh: functions: command not found

npm ERR! Darwin 16.4.0
npm ERR! argv "/usr/local/Cellar/node/7.8.0/bin/node" "/usr/local/bin/npm" "start"
npm ERR! node v7.8.0
npm ERR! npm  v4.2.0
npm ERR! file sh
npm ERR! code ELIFECYCLE
npm ERR! errno ENOENT
npm ERR! syscall spawn
npm ERR! your-action-app@0.0.1 start: `functions deploy yourAction --trigger-http`
npm ERR! spawn ENOENT
npm ERR! 
npm ERR! Failed at the your-action-app@0.0.1 start script 'functions deploy yourAction --trigger-http'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the your-action-app package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     functions deploy yourAction --trigger-http
npm ERR! You can get information on how to open an issue for this project with:
npm ERR!     npm bugs your-action-app
npm ERR! Or if that isn't available, you can get their info via:
npm ERR!     npm owner ls your-action-app
npm ERR! There is likely additional logging output above.

npm ERR! Please include the following file with any support request:
npm ERR!     /Users/mars/.npm/_logs/2017-04-12T14_32_03_870Z-debug.log

我创建了Api.ai中的操作,我将package.json修改为:

I created the action in Api.ai and I modified the package.json to:

{
  "name": "execute-home-command",
  "description": "This is your Action's webhook",
  "version": "0.0.1",
  "private": true,
  "license": "Apache Version 2.0",
  "author": "Google Inc.",
  "engines": {
    "node": "~6.0"
  },
  "scripts": {
    "lint": "semistandard --fix \"**/*.js\"",
    "start": "functions deploy execute-home-command --trigger-http",
    "deploy": "gcloud beta functions deploy execute-home-command --trigger-http --stage-bucket <storage_bucket_name>"
  },
  "dependencies": {
    "actions-on-google": "^1.0.0"
  },
  "devDependencies": {
    "semistandard": "^9.1.0"
  }
}

操作如下:

< img src = https://i.stack.imgur.com/38nIC.png alt = api.ai>

推荐答案

我想您没有的npm软件包

I guess you don't have npm package for functions-emulator installed.

尝试通过 npm install -g @ google-cloud / functions-emulator

这篇关于通过Webhook将Google Home连接到node.js的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆