FCM推送通知问题:“错误":“未注册" [英] FCM push notification issue: "error":"NotRegistered"

查看:501
本文介绍了FCM推送通知问题:“错误":“未注册"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我遇到了使用FCM向Android发送推送通知的奇怪问题.

I am getting weird issue of sending push notification to Android using FCM.

目标:-发送推送通知时出错

以下是我确实具有向Android发送推送通知的功能的场景

Below is the scenario I do have function for sending push notification to Android

 public static function SendMultipleNotificationAndroid($groups)
    {
        //your api key SERVER API KEY
        $apiKey = Yii::$app->params['android_api_key'];
        $url = 'https://fcm.googleapis.com/fcm/send';    
        $headers = array(
            'Authorization:key=' . $apiKey,
            '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_SSL_VERIFYPEER, false);
        
        foreach($groups as $resG){
            $users  = $resG['users'];                        
            $msg    =   $resG['message'];
            $type    =   $resG['notification_type'];
            $notification_data    =   $resG['notification_data'];

            $deviceTokens = [];
            foreach($users as $resUser){
                $deviceTokens[] = $resUser['device_token'];
                //Add  Friend badge count +1
                Common::AddRemoveBadgeCount($resUser['user_id']);
            }
            if(!empty($deviceTokens)){
                $fields = array(
                    'registration_ids' => $deviceTokens,
                    'priority'     => 'high', 
                    'collapse_key' => $resG['notification_type'],   
                    'time_to_live' => 2419200,     
                    "click_action" =>"NotificationListingActivity",     
                    'data'         => [                  
                        "title"             => "ProjectName",
                        "body"              => $resG['message'],
                        "action_tag"        => $resG['notification_type'],
                        "message"           => $resG['message'],
                        'notification_type' => $type,
                        'notification_data' => $notification_data,
                        'sound'             => 'default',
                    ]
                );
                //Print result 
                p($ch,0);
                curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));
                curl_exec($ch);
            }            
        }
        curl_close($ch);
    }

问题是,当我发送单个通知时,它可以正常工作,但是当我发送多个通知时,每次都出现错误

So the issue is when I send single notification it works fine but when I send multiple notification I got error every time

<pre>Resource id #5</pre>{"multicast_id":4818908994630396118,"success":1,"failure":1,"canonical_ids":0,"results":[{"error":"NotRegistered"},{"message_id":"0:1487136045570022%c3bae3c6002e9358"}]}

<pre>Resource id #5</pre>{"multicast_id":5218359780835228544,"success":1,"failure":1,"canonical_ids":0,"results":[{"error":"NotRegistered"},{"message_id":"0:1487136046618669%c3bae3c6002e9358"}]}

在调试代码时,我们的数据库中确实有设备令牌,没有防火墙会停止发送推送通知.

As we debug the code we do have device token in our database no firewall which stops sending push notifications.

每次我调用上面的函数都会得到

Every time I call above function I get

"error":"NotRegistered"

推荐答案

对php不太了解,但是最近我在另一个项目中遇到了同样的问题,并且已经通过以下方式解决了这个问题:

Don't know much about php, but recently I have faced the same issue in another project and I have resolved this way :

首先请参考: 在哪里可以找到Firebase Cloud的API密钥消息吗?

并获取更新的API密钥,如下快照所示:

and get updated API key as shown in below snapshot

这篇关于FCM推送通知问题:“错误":“未注册"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆