这是我的代码
$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配置两个不同的参数吗?
提前谢谢