是否有可能通过Parse.com安排在某个(本地)时间每天发送推送通知?我已经想出如何在当地时间安排推送,而不是如何让它们每天都发生。
答案 0 :(得分:2)
您可以安排background job在定期运行时以编程方式触发其中的推送。
Parse.Cloud.job('sendRecurringNotification', function(request, response) {
Parse.Push.send({
channels: ['a-reminder'],
data: {
alert: 'The kitchen is closing in 25 minutes'
}
}, {
success: function() {
response.success('scheduled order reminder notification')
},
error: function(error) {
response.error('unable to schedule order reminder notification with error ' + error)
}
})
})