如何使用Parse.com android API来识别特定用户? Flurry允许使用FlurryAgent.setUserId
,Crittercism允许使用Crittercism.setUsername(
。 Parse.
有什么作用?
可能的解决方案 这有用吗?
Parse.initialize(this, "asdfasdfs", "asdfasd");
ParseInstallation.getCurrentInstallation().saveInBackground();
ParseInstallation.create(identity == null ? "No Identity Set"
: identity);
答案 0 :(得分:1)
Parse有一个默认的User类,它有两个唯一的字段:objectId
和username
。 (User类还包含开箱即用的email
,password
等字段。
您可以使用objectId
或username
来查询特定用户。
ParseInstallation
是一个用于存储应用程序的安装详细信息的类。每台设备都会有一个安装对象。这通常用于推送通知和管理会话,或者您可以将其用于特定于设备的任务(同样,消息)。
从设备创建/注册用户时,将创建安装对象。由于它是ParseObject
(或iOS上的PFObject
)的子类,因此您可以根据需要在其上存储您自己的数据字段。