如何为从PHP发送到Android和iOS的可点击推送通知配置FCM参数?

时间:2019-11-27 17:40:31

标签: php firebase google-cloud-firestore firebase-cloud-messaging

这是我的代码

$notification = [
'title' => $title,
'body' => $body,
'text' => $body,
'sound' => 'default',
'click_action' => $clickAction];

$arrayToSend = [
'registration_ids' => $tokens, 
'notification' => $notification, 
//If I do comment above line, notification is not coming in ios. If I do uncomment above line, click_action is not working in android.
'priority' => 'high'
];

我应该分别为android和ios配置两个不同的参数吗?

提前谢谢

0 个答案:

没有答案