将content-available
值添加到蔚蓝移动服务的payload
参数中。 apns
send
方法似乎没有任何效果。
以下是我的尝试方式:
exports.post = function(request, response) {
var push = request.service.push;
push.apns.send('token', {
'content-available': 1,
sound: 0
// priority: 5,
// alert: 'value',
// badge: 1,
// sound: 'default',
// payload: {
// ...
//}
});
};
答案 0 :(得分:0)
这应该对你有用。请查看以下链接以获取更多信息,以确保您还将应用程序配置为接收静默通知。