Web推送通知有效负载定义

时间:2018-12-13 14:19:22

标签: angular laravel push-notification notifications web-push

请参阅我对有关webpush(Angular 7 PWA configure Push Notifications)的问题的回答,

我正在使用两个具有明显不同的通知有效负载定义的库:

  1. https://github.com/laravel-notification-channels/webpush正在发送

    {
        "title":"test",
        "body":"test",
        "data":{"id":"21a3804e-6d71-4a56-b513-535709c37c0f"}
    }
    
  2. Angular 7 ServiceWorker期望像这样

    {
        "notification":{
            "title":"test",
            "body":"test",
            "data":{"id":"21a3804e-6d71-4a56-b513-535709c37c0f"}
        }
    }
    

现在哪个是有效负载的正确定义? 我是否必须将所有内容放入嵌套的“通知”对象中?

0 个答案:

没有答案