报告Google首页操作的状态

时间:2018-10-31 18:12:14

标签: actions-on-google google-home google-smart-home

我正在处理报告状态。我使用Java作为服务器语言。我能够成功验证用户身份。我的智能开关具有开/关特性。除报告状态外,其他所有东西都工作正常。我不清楚。

作为node.js和Google Home智能操作的新手,我有以下查询:

  1. 必须在何处执行报告状态?在node.js(action)还是服务器端?
  2. 是否有我可以参考的示例代码并遵循该过程?

2 个答案:

答案 0 :(得分:0)

Report State应该在您的服务器上实现,因为它确实需要您可能不想公开泄漏的服务密钥。 (不知道与Java相比,您的Node.js进入哪里了)

除了该准则之外,它还可以在允许您将状态发送到Homegraph的任何地方实施。

在Node.js中编写的codelab中是查看示例代码的好地方。它显示了如何使用actions-on-google库执行报告状态(没有Java库)。

const postData = {
  requestId: 'ff36a3cc', /* Any unique ID */
  agentUserId: '123', /* Hardcoded user ID */
  payload: {
    devices: {
      states: {
        /* Report the current state of our washer */
        [event.params.deviceId]: {
          on: snapshotVal.OnOff.on,
          isPaused: snapshotVal.StartStop.isPaused,
          isRunning: snapshotVal.StartStop.isRunning,
        },
      },
    },
  },
};

return app.reportState(postData)
  .then((data) => {
    console.log('Report state came back');
    console.info(data);
  });

答案 1 :(得分:0)

在onWrite((event,context)和[context.params.deviceId]

中添加“上下文”

/**
 * Send a REPORT STATE call to the homegraph when data for any device id
 * has been changed.
 */
exports.reportstate = functions.database.ref('/{deviceId}').onWrite((event,context) => {
  console.info('Firebase write event triggered this cloud function');

  const snapshotVal = event.after.val();

  const postData = {
    requestId: 'ff36a3cc', /* Any unique ID */
    agentUserId: '123', /* Hardcoded user ID */
    payload: {
      devices: {
        states: {
          /* Report the current state of our washer */
          [context.params.deviceId]: {
            on: snapshotVal.OnOff.on,
          },
        },
      },
    },
  };

  return app.reportState(postData)
    .then((data) => {
      console.log('Report state came back');
      console.info(data);
    });
});