背景
我的 iPhone 6s 目前版本:开发者预览版 Beta 4
最近上线了一个基于 APNs 的服务,这两天升级了iOS10
之后忽然发现不好使了,iOS9
没问题,囧。
Debug
经过经过一番调试之后发现,发送的内容没变,但在iOS10
上被过滤掉了,没有传给app。
这里推荐一个APNs调试工具:PushMeBaby,最早我是发现stefanhafeneger
做了这个工具,但是他的版本已经不能用了,我在他的版本上做了一些优化,需要的可以试试。
我们原来发送了一条用户不可见的Remote Notification
给app来做一些处理,结构如下:
{
"event":"event_id",
"message":
{
"key1":"value1",
"key2":"value2",
"key3":"value3",
},
...
}
就是这条数据,iOS9
的app可以接收的到,iOS10
不行。我立即试了一下用户可见的Remote Notification
,发现iOS10
是可以接收的到的。内容如下:
{
"aps":
{
"alert":"This is some fancy message."
},
"event":"event_id",
"message":
{
"key1":"value1",
"key2":"value2",
"key3":"value3",
},
...
}
于是我猜测是原来的消息体没有aps
这个key导致的,看了下官方文档发现了这么一句话:
For each notification, compose a JSON dictionary object (as defined by RFC 4627). This dictionary must contain another dictionary identified by the
aps
key. Theaps
dictionary can contain one or more properties that specify the following user notification types:
An alert message to display to the user
A number to badge the app icon with
A sound to play
To support silent remote notifications, add the
remote-notification
value to theUIBackgroundModes
array in yourInfo.plist
file. To learn more about this array, see UIBackgroundModes.
猜测
我的猜测有两种可能性导致的这种情况:
- 也许这是
iOS10
的一个bug - 也许苹果想在这一版进行
Remote Notification
规范化,所以这有可能是iOS10
的一个feature
结论
结论就是不管是不是需要显示在通知栏的Remote Notification
,aps
都不能为空,并且至少包含一对合法的key value。
处理方法
不管怎样,目前来看还是要针对iOS10
做一些特殊处理的。由于我们需要发送信息给app处理,又不需要显示给用户看。所以选择alert
、badge
、sound
明显是不合适的。
最后我们选择后台运行也可以唤醒app的keycontent-available
(具体content-available
怎么用请自行Google)。内容如下:
{
"aps":
{
"content-available":"1"
},
"event":"event_id",
"message":
{
"key1":"value1",
"key2":"value2",
"key3":"value3",
},
...
}
Comments