您好我将Parse对象发送到Parse仪表板到Installation类。我可以看到设备令牌,但下面没有显示的其他3个对象是我的代码,请告诉我我做错了什么,
ParseInstallation.getCurrentInstallation().saveInBackground(new SaveCallback() {
@Override
public void done(ParseException arg0) {
devicetoken = (String) ParseInstallation.getCurrentInstallation().get("deviceToken");
ParseObject testObject = new ParseObject("Channel_name");
testObject.put("user_objectId", "user_" + devicetoken);
testObject.put("userId", 5);
testObject.put("Gender", "male");
testObject.put("Age", 24);
testObject.saveInBackground();
new DatabaseTableHandler().execute("TEXT");
}
});