如何使用乏味推送通知发送试运行通知



GCM 提供了一种发送试运行消息以测试请求格式的方法,如参考 https://developers.google.com/cloud-messaging/http-server-ref 中所述。如何使用VAPID(FCM(标准实现类似的dry_run支持?

我知道这是一个旧帖子,但我会回答。也许它可以帮助某人。

您也可以使用DryRun在FCM中进行测试。看:

// Send a message in the dry run mode.
var dryRun = true;
admin.messaging().send(message, dryRun)
.then((response) => {
// Response is a message ID string.
console.log('Dry run successful:', response);
})
.catch((error) => {
console.log('Error during dry run:', error);
});

您需要传递一个布尔值作为 send(( 函数的第二个参数。

相关内容

  • 没有找到相关文章

最新更新