0

首先我为我糟糕的英语道歉。我正在接近Parse.com并且正在开发一个“多服务器”应用程序,它允许我发送由“服务器”过滤的通知。

我尝试了两种解决方案,但都有一些问题都与以下事实有关:当我启动我的应用程序时,我不知道用户会选择哪个“服务器”。

想法 1 - 真正的多服务器

  1. 我手动创建 n 个Parse.com服务器,彼此完全分开
  2. 我将所有服务器密钥存储在对象中,例如[Name, AppID, clientKey]
  3. 我的应用程序列出了名称属性
  4. 用户选择他的服务器
  5. 我开始新ActivityonCreate()初始化 Parse,如下所示:

    String appID = getAppID();
    String cKey = getKey();
    Parse.initialize(this, appID, cKey);
    ParseInstallation.getCurrentInstallation().saveInBackground();
    
  6. (如果他想更改服务器,我只需清理我的 App 数据并使用新密钥重新初始化 Parse)

  7. 一切正常,直到我尝试在应用程序关闭(非活动且不在后台)时发送推送通知时,NullPointerException由于尚未调用 Parse 的初始化。

想法 2 - 模拟多服务器

  1. 我手动创建一台Parse.com服务器
  2. 所有表都有一个新的列(例如)uniqueIdServer
  3. 我在应用程序中初始化解析,如:

    public class MyApplication extends Application {
    @Override
    public void onCreate() {
        Parse.initialize(this, "ThisTimeIHaveJustOneAppIDIt'sEasy", "SameHere");
        ParseInstallation.getCurrentInstallation().saveInBackground();
        super.onCreate();
    }}
    
  4. 我显示了我的旧列表,但这次只是 [name, uniqueID]

  5. 用户选择他的“服务器”
  6. 现在我可以用我的新列轻松过滤我的数据,当我的应用程序关闭时我没有问题,因为 Parse 会自己调用他的初始化程序
  7. 但我不知道如何过滤推送通知uniqueId
  8. 我尝试使用频道而不是仅在该频道发送推送:

        List<String> channels = new ArrayList<>();
    channels.add(getUniqueID());
    ParseInstallation install = ParseInstallation.getCurrentInstallation();
    install.put("channels", channels);
    install.saveEventually();
    
  9. 但总是一样的,我不知道在“应用程序时间”我的用户会选择什么,所以我getUniqueID()会绑定"null"或类似的,更糟糕​​的是我不知道如何更改频道(atm 我只能在我卸载我的应用程序时)

真的非常感谢,任何帮助将不胜感激。

4

1 回答 1

0

使用您的想法 2,可以为安装提供自定义属性,并可以像任何其他对象一样进行查询。此外,可以使用安装查询进行推送。请参阅文档中的“高级定位”

最低限度,你可以这样说:

var query = new Parse.Query(Parse.Installation);
query.equalTo('uniqueIdServer', 'serverId123');

var data = { alert: "Ciao users of serverId123!" }

Parse.Push.send({ where: query, data: data }).then(function() {
    // this code runs after the push has been sent to APN
}, function(error) {
    // this code runs in case of an error
});
于 2015-12-03T16:23:40.833 回答