最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Parse Sending push notification to specific user from Cloud code - Stack Overflow

programmeradmin3浏览0评论

I want to send a push notification from parse cloud code to a specific user. So i have created a user section in installation class of my parse table and i save the user object id there so i can target the user by id and send push from cloud code. .PNG?dl=0

From parse it is very simple to do, i did it like this with condition .PNG?dl=0

But what i want to do is to send a push notification when a user adds new object in the class my class is "Ticket".

This class has ACL enabled. What i want to do is very simple send push to the user which created the object through cloud code

Here is my cloud code

  Parse.Cloud.afterSave("Ticket", function(request) {
  var pushQuery = new Parse.Query(Parse.Installation);

  Parse.Push.send({
        where: pushQuery,
        data: {
            alert: "New Ticket Added",
            sound: "default"
              }
        },{
        success: function(){
           response.success('true');
        },
        error: function (error) {
           response.error(error);
        }
      });
});

This code sends push to all users.

Please help

I want to send a push notification from parse cloud code to a specific user. So i have created a user section in installation class of my parse table and i save the user object id there so i can target the user by id and send push from cloud code. https://www.dropbox./s/dvedyza4bz3z00j/userObjec.PNG?dl=0

From parse. it is very simple to do, i did it like this with condition https://www.dropbox./s/1mb3pb2izb0jlj9/pushs.PNG?dl=0

But what i want to do is to send a push notification when a user adds new object in the class my class is "Ticket".

This class has ACL enabled. What i want to do is very simple send push to the user which created the object through cloud code

Here is my cloud code

  Parse.Cloud.afterSave("Ticket", function(request) {
  var pushQuery = new Parse.Query(Parse.Installation);

  Parse.Push.send({
        where: pushQuery,
        data: {
            alert: "New Ticket Added",
            sound: "default"
              }
        },{
        success: function(){
           response.success('true');
        },
        error: function (error) {
           response.error(error);
        }
      });
});

This code sends push to all users.

Please help

Share Improve this question asked Nov 9, 2014 at 11:06 BeriBeri 592 silver badges6 bronze badges 1
  • Hey Beri, have you checked out this similar post? stackoverflow./questions/26040437/… – dstefanis Commented Nov 11, 2014 at 7:11
Add a ment  | 

2 Answers 2

Reset to default 10

This can be a solution:

Parse.Cloud.afterSave( "Ticket", function(request) {

                 //Get value from Ticket Object
                  var username = request.object.get("username");

                  //Set push query
                  var pushQuery = new Parse.Query(Parse.Installation);
                  pushQuery.equalTo("username",username);

                  //Send Push message
                  Parse.Push.send({
                                  where: pushQuery,
                                  data: {
                                  alert: "New Ticket Added",
                                  sound: "default"
                                  }
                                  },{
                                  success: function(){
                                  response.success('true');
                                  },
                                  error: function (error) {
                                  response.error(error);
                                  }
                 });




});

You have to add a filter to the pushQuery for the user created the object.

发布评论

评论列表(0)

  1. 暂无评论