Parse.com 云代码失败
Parse.com Cloud Code Failing
我正在尝试使用以下云代码
Parse.Cloud.job("sendAlert", function(sendAlert, status) {
Parse.Push.send({
data: {
"content-available": 1,
}
}, {
success: function() {
status.success("Push Worked!!!");
},
error: function(error) {
status.error("Uh oh, something went wrong.");
}
});
});
发送 silent 推送提醒。
失败并调用错误函数。有什么问题?
请允许我回答我自己的问题,我使用了以下代码。
var query = new Parse.Query(Parse.Installation);
Parse.Cloud.job("sendAlert", function(sendAlert, status) {
Parse.Push.send({
where: query, // Set our Installation query
data: {
alert: "Broadcast to everyone"
}
}, {
success: function() {
status.success("Push Worked!!!");
},
error: function(error) {
status.error("Uh oh, something went wrong.")
}
});
});
我正在尝试使用以下云代码
Parse.Cloud.job("sendAlert", function(sendAlert, status) {
Parse.Push.send({
data: {
"content-available": 1,
}
}, {
success: function() {
status.success("Push Worked!!!");
},
error: function(error) {
status.error("Uh oh, something went wrong.");
}
});
});
发送 silent 推送提醒。
失败并调用错误函数。有什么问题?
请允许我回答我自己的问题,我使用了以下代码。
var query = new Parse.Query(Parse.Installation);
Parse.Cloud.job("sendAlert", function(sendAlert, status) {
Parse.Push.send({
where: query, // Set our Installation query
data: {
alert: "Broadcast to everyone"
}
}, {
success: function() {
status.success("Push Worked!!!");
},
error: function(error) {
status.error("Uh oh, something went wrong.")
}
});
});