Android push Notification through firebase (server side)

后端 未结 2 1935
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-23 18:07

I am trying to send push notification to my android device from server using firebase cloud messaging system. I was able to successfully register my device and token for my devi

2条回答
  •  心在旅途
    2021-01-23 18:54

    Thanks much @Shubham for the solution.

    Guys please use @Shubham's code for sending notifications to "Topics'

    I have modified his code a bit to address Single recipient messaging. Here it goes

    ";
                    $message = array("message" => "This is a test message from server");
                    $fields = array(
                        "to"                => $val,
                        "data"              => $message,
                        "time_to_live"      => 30,
                        "delay_while_idle"  => true
                    );
    
                    $auth_key = "";
    
                    $headers = array(
                        "Authorization: key=".$auth_key,"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);
    
    ?>
    

    to - Single recipient
    registration_ids - multicast messages (Many recipients - should be in array)

    This may not be the ideal solution from my end but it definitely works :)

提交回复
热议问题