Problem
Using the client.track() method to send events is successful, however, no events show up in the the admin UI
Root Cause
There are multiple root causes that the Split cloud will reject the request silently:
- Event Type name has invalid character, like spaces.
client.track("userId", "client", "my conversion");
- Traffic Type name passed in the call does not exist in Split organization.
client.track("userId", "IncorrectTrafficType", "conversion");
Solution
Make sure to follow the guidelines stated in the SDK docs page.
Comments
0 comments
Please sign in to leave a comment.