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

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

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)标记吗?

1个回答

0

不行。 你只能将通知/数据发送到iOS/Android设备。


3
我可以使用这段代码将消息发送到浏览器,但我不确定对于设备是否可行。 - Dushyant Joshi

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接