2015-11-12 146 views
0

從Cloud Code發送推送通知時遇到問題。我想在保存AlertPoint對象後發送推送。我的代碼如下所示:使用parse.com發送推送雲代碼

Parse.Cloud.afterSave("AlertPoint", function(request) { 
    Parse.Push.send({ 
     data: { 
      alert: "Test push." 
     } 
    }, { 
     success: function() { 
      //push successsful 
      }, 
     error: function(error) { 
      //Handle error 
      throw "Got an error" + error.code + " : " + error.message; 
     } 
    }); 
}); 

但推不發送,我得到一個錯誤:

Result: Uncaught Got an error115 : Missing the push channels. 

我想推送到所有註冊用戶和我見過的代碼示例在沒有設置頻道的情況下發送推送。我做錯了什麼,以及如何解決這個錯誤?

回答

1

您必須訂閱空白頻道中的所有用戶,並設置推送才能將此消息廣播到此空白頻道。