任何人都可以举例说明如何将当前用户与安装子关联起来我可以将推送通知发送给与安装相关联的单个用户。
我使用的是Android SDK
答案 0 :(得分:2)
// Associate the device with a user
ParseInstallation installation = ParseInstallation.getCurrentInstallation();
installation.put("user",ParseUser.getCurrentUser());
installation.saveInBackground();