Push notification 通知中未显示appcenter推送通知名称

Push notification 通知中未显示appcenter推送通知名称,push-notification,visual-studio-app-center,Push Notification,Visual Studio App Center,我正在使用appcenter推送通知,并发送http post请求,以使用appcenter推送api发送推送。 当我使用此有效负载发送推送通知时 { "notification_content" : { "name" : "First Push From App Center", "title" : "Push From App Center", "body" : "Welcome!", "custom_data" : {"key1" : "val1", "key2"

我正在使用appcenter推送通知,并发送http post请求,以使用appcenter推送api发送推送。 当我使用此有效负载发送推送通知时

    {
 "notification_content" : {
  "name" : "First Push From App Center",
  "title" : "Push From App Center",
  "body" : "Welcome!",
  "custom_data" : {"key1" : "val1", "key2" : "val2"}
  },
    "notification_target" : {
    "type" : "audiences_target",
    "audiences" : ["a-1", "a-2"]
  }
}
网址

${platform}/push/notifications


我在手机中收到通知,但只有标题和正文,我看不到“从应用程序中心首次推送”的名称。

通知的名称不会推送到设备上,它只是一个名称,让您记住在列出通知时创建的通知。例如,当您列出您创建的所有推送通知时,名称将显示在门户中。

我可以添加标题、标题和推送内容吗?我的意思是在推送设备中获得3个不同的文本?今天这是不可能的。它需要静默推送支持(例如,只发送自定义数据而不发送通知),并在应用程序中使用自定义数据从静默推送生成自定义通知。不幸的是,App Center没有静默推送支持。