天蓝色移动服务apns对象支持静默推送/远程通知

时间:2014-06-10 17:04:25

标签: apple-push-notifications azure-mobile-services

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: {
        //    ...
        //}
    });
};

1 个答案:

答案 0 :(得分:0)

这应该对你有用。请查看以下链接以获取更多信息,以确保您还将应用程序配置为接收静默通知。

http://hayageek.com/ios-silent-push-notifications/