在Android应用程序中使用Mixpanel获取用户名

时间:2014-04-09 12:53:44

标签: android mixpanel

我已将Mixpanel API集成到我的项目中。当用户登录时,我将它们设为唯一用户,如下所示

    //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网络应用程序中查看了我的帐户。Image for reference 1.如何获得名称字段? 2.Android Devices Column显示如附图所示。这是什么?谁能帮助这两个人?

1 个答案:

答案 0 :(得分:0)

你必须添加这样的人物:

properties.put(“$ name”,“在此写名字”);

还有另外一个属性也是:$ created,“$ first_name”,“$ last_name”,“$ created”,“$ email”

您需要指定这些属性......