User Tracking
Changelogfy allows tracking user, it's great to understand user flow.
JavaScript
Tracking your users allows you to identify user actions, such as reacting, commenting, or viewing a changelog.
In addition, after identifying your user with a unique ID, we will also sync across devices so that users don't see the same notifications on different devices.
For Tracking your users, you need to pass a UNIQUE user_id in your In-App Widget Installs.
<script>
var CLF_config = {
selector: ".changelogfy-widget",
app_id: "YOUR_APP_ID",
data: {
user_id: '123456', // required
user_name: 'User Name', // required
user_email: 'user@email.com', // required
}
};
</script>
<script async src="https://widget.changelogfy.com/index.js"></script>
If you don't know your app_id, Check here!
Updated on: 10/19/2023
Thank you!