我们正在开发Android应用。在应用中,我们使用parse_server
push-notification
We followed this。我们在解析服务器中保存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); \
请指导我如何从解析中获取注册用户。以上就像使用获取当前的移动用户名。
答案 0 :(得分:0)
您必须查询Parse Installation表才能找到注册用户发送Push通知。您可以编写一个云功能,您可以从应用程序中触发。这个问题已经问过,请检查答案。 How to retrieve list of parseusers希望这有帮助。
问候。