You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//Create Alias from unique id, i.e. create a new mixpanel profile: to call when a user signs up, with a unique id that is not used by another mixpanel profile as param
90
90
Mixpanel.createAlias(UNIQUE_ID)
91
91
92
-
//Identify
92
+
//Identify, i.e. associate to an existing mixpanel profile: to call when a user logs in and is already registered in Mixpanel with this unique id
93
93
Mixpanel.identify(UNIQUE_ID)
94
94
95
-
//Set People properties
95
+
//Set People properties (warning: if no mixpanel profile has been assigned to the current user when this method is called, it will automatically create a new mixpanel profile and the user will no longer be anonymous in Mixpanel)
96
96
Mixpanel.set({"$email":"elvis@email.com"});
97
97
98
-
//Set People Properties Once
98
+
//Set People Properties Once (warning: if no mixpanel profile has been assigned to the current user when this method is called, it will automatically create a new mixpanel profile and the user will no longer be anonymous in Mixpanel)
// Mixpanel reset method (warning: it will also generate a new unique id and call the identify method with it. Thus, the user will not be anonymous in Mixpanel.)
137
137
Mixpanel.reset();
138
138
139
139
// get the last distinct id set with identify or, if identify hasn't been
0 commit comments