2014-04-09 325 views
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應用程序的帳戶進行檢查。 Image for reference 1.如何獲得姓名字段? 2.Android設備列顯示如附圖所示。這是什麼?任何人都可以幫助這兩個?

回答

0

您必須添加一個人的財產是這樣的:

properties.put( 「$名」, 「在這裏寫下名字」);

還有另一個特性也喜歡:$創建, 「$ FIRST_NAME」, 「$姓氏」, 「$創建」, 「$電子郵件」

您需要指定這些屬性...

相關問題