0
我已經成功地集成到Parse.com
應用android
的&推送通知被完美地工作,當我試圖從發送數據瀏覽器的通知。Parse.com:從設備發送推送通知?
現在,當我試圖實現從設備發送通知時,它不會發送任何東西&即使在Parse Data瀏覽器的Push通知部分中也沒有日誌。
而且,我已經啓用客戶端推送中設置啓用。
這裏是我的代碼:
public class ParseApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
ParseCrashReporting.enable(this);
Parse.enableLocalDatastore(this);
Parse.initialize(this, "xxx", "xxx");
ParsePush.subscribeInBackground("",new SaveCallback() {
@Override
public void done(ParseException e) {
if (e == null) {
Log.d("com.parse.push", "successfully subscribed to the broadcast channel.");
} else {
Log.e("com.parse.push", "failed to subscribe for push", e);
}
}
});
ParseInstallation.getCurrentInstallation().saveInBackground();
ParsePush parsePush = new ParsePush();
parsePush.setChannel("Everyone");
parsePush.setMessage("Helloooooo :)");
parsePush.sendInBackground(new SendCallback() {
@Override
public void done(ParseException e) {
Log.d("parse push","Parse push sent");
}
});
}
}
在logcat
,我收到推送通知發送成功,但事實並非如此。我在犯什麼錯誤?