iOS-集成Firebase发送推送消息到App

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS-集成Firebase发送推送消息到App相关的知识,希望对你有一定的参考价值。

参考技术A 继续集成Firebase

按照教程文档来 云消息传递文档

讲下比较重要的几个步骤

将您的 APNs 身份验证密钥上传到 Firebase。如果您还没有 APNs 身份验证密钥,请参阅 配置 FCM APNs 。

用它推荐的方式, 配置p12文件, 这个跟极光推送配置差不多

运行项目在下面这个方法可以获取到

Firebase 云消息传递 PHP 集成发送推送通知

【中文标题】Firebase 云消息传递 PHP 集成发送推送通知【英文标题】:Firebase Cloud Messaging PHP Integration send push notification 【发布时间】:2017-03-29 06:04:19 【问题描述】:

我在 PHP 中集成了 FCM 推送通知功能。现在,通知工作正常,但badge 号码不起作用。

我添加了badge = 1,但每次都没有显示 1 而不是递增徽章编号。我想发送自动递增的徽章编号。

请看我的php文件代码:

 <?php

    $ch = curl_init("https://fcm.googleapis.com/fcm/send");

    //The device token.
    $token = "DEVICE_TOKEN_HERE"; //token here 

    //Title of the Notification.
    $title = "Title Notification";

    //Body of the Notification.
    $body = "This is the body show Notification";

    //Creating the notification array.
    $notification = array('title' =>$title, 'text' => $body, 'sound' => 'default', 'badge' => '1');

    //This array contains, the token and the notification. The 'to' attribute stores the token.
    $arrayToSend = array('to' => $token, 'notification' => $notification,'priority'=>'high');

    //Generating JSON encoded string form the above array.
    $json = json_encode($arrayToSend);
    //Setup headers:
    $headers = array();
    $headers[] = 'Content-Type: application/json';
    $headers[] = 'Authorization: key=API_KEY_HERE'; // key here

    //Setup curl, add headers and post parameters.
    curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");                                                                     
    curl_setopt($ch, CURLOPT_POSTFIELDS, $json);
    curl_setopt($ch, CURLOPT_HTTPHEADER,$headers);       

    //Send the request
    $response = curl_exec($ch);

    //Close request
    curl_close($ch);
    return $response;

?>

请帮帮我!!!谢谢。

【问题讨论】:

【参考方案1】:

这是预期的行为。 iOS 不会自动增加您发送的徽章。在发送之前,您必须在服务器端确定徽章的应有值。

另见post。

【讨论】:

谢谢 AL 我已经阅读了这篇文章,之后我正在从我的服务器端管理徽章,它工作正常。 :) 酷。干杯。 :)

以上是关于iOS-集成Firebase发送推送消息到App的主要内容,如果未能解决你的问题,请参考以下文章

iOS Swift 使用 Firebase 云消息发送丰富的推送通知

Android友盟推送集成

python Python脚本通过Firebase云消息传递将可升级包的推送通知发送到iOS / Android。

iOS推送原理

无法将iOS CriticalAlert发送到Firebase云消息传递

uniapp中unipush推送的使用