我们正在开发一个Android应用程序。在应用程序中,我们使用的是push-notification We followed this的parse_server。我们将user_Name和user_Age等数据保存在解析服务器中。现在我们需要获取所有的User_Name。但是我们只有像这样的当前移动user_Name.Code
JSONObject i1=ParseInstallation.getCurrentInstallation().getJSONObject("user");//user is key in parse
System.out.println("users "+i1); \请指导我如何从解析中获取注册用户。上面类似于使用get current mobile用户名。
发布于 2015-04-22 19:22:36
您必须查询Parse Installation表才能找到要发送推送通知的注册用户。你可以编写一个云函数,你可以在你的应用程序中触发。这个问题已经问过了,请检查答案。How to retrieve list of parseusers希望这能有所帮助。
致以问候。
https://stackoverflow.com/questions/29793698
复制相似问题