新的 Firebase HTTP v1 iOS JSON 负载通知语法示例

问题描述 投票:0回答:1

我看过一堆帖子,包括与此相关的问题,但没有真正语法的示例。以下是我遗留的 Apple 静默通知的示例:

{
  "to": "%MobileUser.DeviceId%",
  "content_available": true,
  "apns-push-type": "background",
  "data": {
    "notificationId": "%Some.Id%",
    "KeyOne": "%Val.One%",
    "KeyTwo": "%Val.One%",
  }
}

所以我尝试前置:

  "message": {
    "apns": {
        "payload": {
          "aps": { 
              "token": "blah"
              "notification": {
                "title": "whatever",
                "body": ""
              },
              "content_available": true,
              "apns-push-type": "background",
              "data": {  etc etc

但我总是收到不好的请求。 有什么地方可以得到准确的语法吗? 我的安卓端可以工作,但苹果端不行。 我知道你现在可以将它们结合起来,但我不需要这样做。 我只需要为这些消息获得良好的语法,无论是无声的还是正常的。 谢谢

firebase-cloud-messaging apple-push-notifications migrate
1个回答
0
投票

Google 的 APIs Explorer 对于所有 Google 的公共服务(并且有用)来说是权威的。

Firebase 云消息传递概述

projects.messages.send
包括
Message
类型

最新问题
© www.soinside.com 2019 - 2024. All rights reserved.