Cheng-Tao Chu
Cheng-Tao Chu
Sorry about the confusion. When you use eventHub.identify or eventHub.register, those user properties will be stored in browser's local storage and those user properties will get merged into event properties...
this scenario is kinda tricky as identify and register were not meant to be used together. The properties specified via eventHub.register will update the user properties of a system generated...
The design of alias and identify is similar to mixpanel so that people who are familiar with mixpanel can quickly get started. Calling identify on identified user will simply override...
Ya, alias simply points one id to another and it doesn't merge events...in your scenario, your second alias just point [email protected] to the newly created user and that's why the...
There are definitely ways to solve the problem and the easiest way is probably adding another endpoint, say pseudo-merge (will need to come up with some better name), in which...
Great, all the api endpoints can be found in web/src/main/java/com/codecademy/eventhub/web/commands We will need another index to track that, given an user id, what other user ids have events that need...