Parse.com是否支持邮件队列?

时间:2015-07-09 07:30:47

标签: android parse-platform push-notification message-queue messaging

我正在使用Parse.com向我的客户发送消息,但我发现Parse.com没有缓冲消息,如果我的客户在线上后他们已经离线,他们就会收到最后一条消息

How i send messages:

        ParseQuery query = ParseInstallation.getQuery();
        query.whereEqualTo("national_id", "****");
        ParsePush push = new ParsePush();
        push.setQuery(query);
        push.clearExpiration();
        push.setMessage("new message");
        push.sendInBackground();

问题是什么?如何解决这个问题?

我应该在解析设置中更改某些内容吗?

提前感谢,

0 个答案:

没有答案