Firebase通知给我“成功”,但我没有在IOS上收到通知

时间:2019-04-24 12:53:50

标签: php firebase codeigniter push-notification firebase-cloud-messaging

我在Android上收到通知,但是当我将通知发送到IOS设备时,即使通知成功,也不会收到通知。

我添加了徽章,声音,振动,优先级等。但是这些都不能解决问题。

function sendNotification($title, $body, $aid,$destination)
{
    $url = 'https://fcm.googleapis.com/fcm/send';

    $message = array(
        'title' => $title,
        'body' => strip_tags($body),
        'vibrate' => 1,
        'sound' => 1,
        "action" => "url",
        'sound' => 'default', 
        'badge' => '1',
        'priority'=>'high',
        "action_destination" => $destination,
    );

    $fields = array(
        'registration_ids' => $aid,
        'data' => $message
    );

    $headers = array(
        'Authorization: key=KEYHERE',
        'Content-Type: application/json'
    );

    $ch = curl_init();

    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_POST, true);
    curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
    curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));

    $result = curl_exec($ch);
    curl_close($ch);
}

移动开发人员说,有一个新的firebase更新,我坦率地认为他在眨眼...有人可以向我解释发生了什么吗?我认为我的工作已经完成,但是你们可能会发现我的代码有问题...

0 个答案:

没有答案