iOS10 APNs 新变化

背景

我的 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. The aps 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 the UIBackgroundModes array in your Info.plist file. To learn more about this array, see UIBackgroundModes.

猜测

我的猜测有两种可能性导致的这种情况:

  • 也许这是iOS10的一个bug
  • 也许苹果想在这一版进行Remote Notification规范化,所以这有可能是iOS10的一个feature

结论

结论就是不管是不是需要显示在通知栏的Remote Notificationaps都不能为空,并且至少包含一对合法的key value。

处理方法

不管怎样,目前来看还是要针对iOS10做一些特殊处理的。由于我们需要发送信息给app处理,又不需要显示给用户看。所以选择alertbadgesound明显是不合适的。 最后我们选择后台运行也可以唤醒app的keycontent-available(具体content-available怎么用请自行Google)。内容如下:

{
	"aps":
	{
		"content-available":"1"
	},
	"event":"event_id",
	"message":
	{
		"key1":"value1",
		"key2":"value2",
		"key3":"value3",
	},
	...
}

End~!

Comments