使用Laravel FCM向设备和网络浏览器发送推送通知



我正在使用以下软件包向浏览器发送通知。

https://github.com/kawankoding/laravel-fcm

发送通知的代码,

fcm()
    ->to($recipients) // $recipients must an array
    ->notification([
        'title' => 'Test FCM',
        'body' => 'This is a test of FCM',
    ])
    ->send();

这对于浏览器工作正常。

问题:$recipients数组可以同时包含设备令牌(Android和iOS(和浏览器(FF和Chrome(令牌吗?

No.您只能向 iOS/安卓设备发送通知/数据。

相关内容

  • 没有找到相关文章