Identifying users
Optionally identify your users
By default, Feature Audit will assign a unique identifier to your users.
You might prefer to have a recognizable id
for further integration with
your system.
For instance, if you were to choose to use your UserID
or Email
field, you
would be able to identify which users are not using your product and vice-versa.
The best place to identify your users is after they’ve logged in or signed up.
// with their email
_fa.identify("my-current@user.com")
// or with their ID
_fa.identify("1234567");
Although it’s optional, we recommend using a recognizable identifier for your users.