解析推送通知不从Android发送到频道

时间:2014-10-14 09:16:14

标签: android parsing notifications push

我正在使用Parse,当我从网站向我的手机(特定频道)发送推送通知时,它运行正常。但是,当我尝试从手机向同一频道(或所有人)发送通知时,它不会发送。

我发送了一个onClick按钮。

(代码非常长,所以我会裁掉相关的部分)

(这是oncreate btw)

Parse.initialize(this, "CODE", "CODE");

    ParseInstallation.getCurrentInstallation().saveInBackground();
    ParsePush.subscribeInBackground("Channel1");
    //PushService.startServiceIfRequired(this);

-

case R.id.sendButton:


        ParsePush push = new ParsePush();
        String message = "Test" ; 
        //push.setChannel("Channel1");
        push.setMessage(message);
        push.sendInBackground();


        break;

(是的,按钮确实有效)

有人能帮助我吗?我做错了什么?

如果需要,可以提供更多信息!

是的,我已经阅读了Parse的文档。我无法弄清楚我在这里做错了什么。我也尝试过ParsePush.send(); ,忽略线程。也没用。

1 个答案:

答案 0 :(得分:0)

Question answered in a question edit. Converted to a community wiki answer to match the Q&A format of StackOverflow.

OP写道:

  

好吧,经过一些研究,我发现了这个:

     

enter image description here

     

在网站上的推送设置中。这基本上可以从客户端(设备)发送给其他人。

     

还有一个愚蠢的错误,忘了把.setOnClickListener放在我的按钮上..