支持Parse推送通知中的iOS10“可变内容”标志

时间:2016-08-31 00:54:02

标签: swift parse-platform apple-push-notifications

我目前正在尝试在iOS10中实现新的富通知功能。为此,我需要能够通过APNS发送mutable-content标志。下面是嵌入在curl中的数据属性。

curl -X POST \
  -H "X-Parse-Application-Id: qwdfwrkwergjpowefjrgowerjhoiwjehojwerw" \
  -H "X-Parse-Master-Key: asdfasdfasdfasdfasderhwerhretjadsfwrthw" \
  -H "Content-Type: application/json" \
  -d '{
    "className":"_User",
    "where":{
      "user":{
        "__type":"Pointer",
        "className":"_User",
        "objectId":"O7zXzrEc8z"
      }
    },
    "data": {
      "alert": " Testing push notications",
      "product":"510958372",
      "mutable-content": 1,
      "content-available": 1,
      "category":"product-share"
    }
  }' \
  https://api.parse.com/1/push

我可以看到content-available标志正在传递,但mutable-content不是。

trigger: <UNPushNotificationTrigger: 0x175a12930; contentAvailable: YES, mutableContent: NO>

1 个答案:

答案 0 :(得分:0)

一些跟进。

Parse.com目前不支持这些新的iOS功能,但Parse Server支持这些功能。目前还有其他可以集成的服务,目前正在为iOS10新功能配置。例如,我刚刚成功实施了OneSignal。