0
我已將Mixpanel API集成到我的項目中。當用戶登錄如下在Android應用程序中使用Mixpanel獲取用戶名
//To track the login success event
JSONObject properties = new JSONObject();
try {
properties.put("Page","Login");
properties.put("Button","Login Success");
} catch(JSONException e) { }
mMixpanel.getPeople().identify(emailText.getText().toString().trim());
mMixpanel.track("Login Success", properties);
一些用戶登錄後,我做了他們作爲唯一的用戶,我與我的Mixpanel的Web應用程序的帳戶進行檢查。 1.如何獲得姓名字段? 2.Android設備列顯示如附圖所示。這是什麼?任何人都可以幫助這兩個?