GCM提供了一种发送干运行消息以测试请求格式的方法,如参考文献https://developers.google.com/cloud-messaging/http-server-ref中所述。如何使用VAPID(FCM)标准实现类似的dry_run支持?
答案 0 :(得分:1)
我知道这是一篇旧文章,但我会回答。也许可以帮助某人。
您也可以使用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()函数的第二个参数传递。