0

在 Windows Azure 云上编写脚本以向 iOS 设备发送 Newstand 通知。json 正文应包含设置为 1 的 content-available。设置此属性的语法是什么?

我的代码如下,但是,当通知到达 iOS 设备时,aps 对象中不存在内容可用。

push.apns.send(item.deviceid, { alert: "Position Check", badge: 1,
'content-available':1,
} ...

4

1 回答 1

0

此问题与尚不存在 NotificationHub 支持的 Azure 移动服务脚本有关。

将代码更新为:

push.apns.send(item.deviceid, { alert: "Position Check", badge: 1,
 'contentavailable':1,
 } ...
于 2014-05-09T15:27:31.930 回答