Firebase通知无法通过HTTP.post创建设备组

时间:2019-02-26 08:15:21

标签: node.js firebase http-post firebase-cloud-messaging firebase-notifications

我正在尝试从NodeJS后端按照文档(https://firebase.google.com/docs/cloud-messaging/js/device-group)中的描述创建设备组,但我做不到,我总是遇到400错误

有人知道我在做什么错吗?

const httpRequest = require('request');

const options = {
    url: 'https://fcm.googleapis.com/fcm/notification',
    method: 'POST',
    headers: {
        'Content-Type': 'application/json',
        'Accept': 'application/json',
        'Authorization': 'key=AAA...vR',
        'project_id': '76...8'
    },
    body: JSON.stringify({
        operation: 'create',
        notification_key_name: 'my-unique-key-name',
        registration_ids: ['token1', 'token2']
    })
};

    httpRequest(options, (error, response, body) => {
    if (!error && response.statusCode === 200) {
        resolve(Converter.parseJSON(body));
    } else {
        reject(error);
    }
});

提前提示以获取任何提示或帮助!

1 个答案:

答案 0 :(得分:1)

原来我很傻。我打印了所有回复:

console.log(response);

并在最后发现了它不起作用的原因:

 body: '{"error":"notification_key already exists"}' }

所以我刚刚尝试了另一个notification_key_name,它就像一个魅力