Google Action推送通知请求中的403

时间:2018-11-23 15:31:21

标签: jwt actions-on-google

我正在尝试为Google Actions Intent执行推送通知。

到目前为止,我已经按照此处的说明进行操作:https://developers.google.com/actions/assistant/updates/notifications#send_notifications

这是我生成的代码:

const {google} = require('googleapis');
var request = require('request');

const key = require('./bot.json');

module.exports = async function (context, myQueueItem) {
    context.log('JavaScript queue trigger function processed work item', myQueueItem);

    let 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) => {
        // code to retrieve target userId and intent
        let notif = {
          userNotification: {
            title: [message],
          },
          target: {
              userId:[obtained from permission request],
              intent: [name of intent],
            // Expects a IETF BCP-47 language code (i.e. en-US)
            locale: 'en-US'
          },
        };

        request.post('https://actions.googleapis.com/v2/conversations:send', {
          'auth': {
            'bearer': tokens.access_token,
           },
          'json': true,
          'body': {'customPushMessage': notif},
        }, (err, httpResponse, body) => {
            console.log(body);
           console.log(httpResponse.statusCode + ': ' + httpResponse.statusMessage);
        });
      });
};

//module.exports(console, "Test");

这将导致通知服务显示403。是因为生成的用户ID,意图名称还是jwtoken?

1 个答案:

答案 0 :(得分:0)

以下是我们在发送推送通知之前需要检查的步骤

  1. 检查您的Google权限设置 为了测试操作,您需要启用必要的权限。

转到“ 活动控制”页面(https://myaccount.google.com/activitycontrols)。 如果尚未登录,请使用您的Google帐户登录。 确保启用以下权限:

a.Web & App Activity
b.Device Information
c.Voice & Audio Activity

2. 目标意图名称应添加到隐式调用字段中。 与启用的推送通知。 3.使用您在Google助手中用于登录 GCP 的电子邮件ID。