具有图像的Apple推送通知有效负载

时间:2017-05-26 11:28:19

标签: ios push-notification apple-push-notifications

enter image description here

我收到了来自x应用的推送通知,图片位于右下角(带圆圈)

需要在我的应用中显示相同类型的图片。什么是apns有效载荷结构。有谁能够帮我。提前谢谢。

1 个答案:

答案 0 :(得分:-1)

对于远程通知,请设置mutable-content : 1category : newCategory。请注意,类别值设置为“newCategory”,它与您之前添加到UNUserNotificationCenter和UNNotificationContentExtensions plist的内容相匹配。

示例:

{
    "aps" : {
        "alert" : {
        "title" : "title",
        "body" : "Your message Here"
        },
        "mutable-content" : "1",
        "category" : "newCategory"
    },
    "otherCustomURL" : "http://www.xxx.jpg"
 }

了解更多信息:https://stackoverflow.com/a/38066583/742298