order-update.js在Google事务api actions中作为响应发送了“ {}”

时间:2019-02-14 11:48:31

标签: node.js firebase google-api dialogflow actions-on-google

我正在尝试在用户发送订单后发送有关订单状态的更新。我一直在使用actions on google transaction guide代码来构建系统。但是,我首先遇到“无法读取未定义的属性'JWT'”错误,并使用const {google} = require('googleapis');更改了代码。

现在,在运行order-update.js文件时,我在控制台上收到“ {}”作为响应,但无法收到通知。 我正在移动设备上尝试。我不确定是否是因为我正在使用它的沙箱模式。

const {google} = require('googleapis');
const request = require('request');
const {OrderUpdate} = require('actions-on-google');
const key = require('<my_service_account_path>');
const jwtClient = new google.auth.JWT(
  key.client_email,
  null,
  key.private_key,
  ['https://www.googleapis.com/auth/actions.fulfillment.conversation'],
  null
);

jwtClient.authorize((err, tokens) => {
  if (err) {
    console.log(err);
    return;
  }
  const currentTime = new Date().toISOString();
  const actionOrderId = '<my_order_id>';
  const orderUpdate = new OrderUpdate({
    actionOrderId: actionOrderId,
    orderState: {
      label: 'Order has been delivered!',
      state: 'FULFILLED',
    },
    updateTime: currentTime,
  });


  const bearer = 'Bearer ' + tokens.access_token;
  const options = {
    method: 'POST',
    url: 'https://actions.googleapis.com/v2/conversations:send',
    headers: {
      'Authorization': bearer,
    },
    body: {
      custom_push_message: {
        order_update: orderUpdate,
      },
      // The line below should be removed for non-sandbox transactions.
      is_in_sandbox: true,
    },
    json: true,
  };


  request.post(options, (err, httpResponse, body) => {
    if (err) {
      console.log(err);
      return;
    }
    console.log(body);
  });
});

在指导上,我找不到应该得到的任何答复,但我相信“ {}”不是答案。 对于推送通知,“ 200:OK”是预期的响应。

1 个答案:

答案 0 :(得分:0)

您正在记录正文(或错误),它是一个JSON对象。对于成功的响应,空的JSON正文不足为奇。错误应包含错误消息。

如果要确认响应为HTTP代码200,即“确定”,则应检查httpResponse.statusCode

documentation状态

  

一些重要的订单更新将导致推送通知   发送到用户的启用了助手功能的移动设备。

但没有说全部。尚不清楚它认为什么“重要”,但是,设置userNotification字段“是建议进行通知,但不能保证会导致通知。”您可能可以使用类似

的方式添加该字段
  const orderUpdate = new OrderUpdate({
    actionOrderId: actionOrderId,
    orderState: {
      label: 'Order has been delivered!',
      state: 'FULFILLED',
    },
    updateTime: currentTime,
    userNotification: {
      title: "Update on your order",
      text: "Your order has been delivered!"
    }
  });