The Storyteller SDK requires users to have an externalId
set. The externalId
should be an identifier which is unique per user and does not change. Therefore, using something like the user's email address is not a good choice for an externalId
as the user may change it at some point in the future. However, using a unique UUID/GUID would be a good choice as it is guaranteed to not change over time.
In order to supply the externalId
to the Storyteller SDK call the following method:
Storyteller.initialize(
{'testApiKey'},
{`testId`},
'',
[],
(result: Boolean, message: string) => {
console.log(result);
}
);
This should be called as soon as the value for the externalId
is known in your app.
If it is not set but Storyteller
is initialized then externalId
would be autogenerated.
You can access the following information about the current user via the following static variables:
Storyteller.currentUserId((callback: { result: string }) => {
console.log(callback.result);
});
Storyteller.currentApiKey((callback: { result: string }) => {
console.log(callback.result);
});
If you use login in your app and wish to allow users to logout and log back in as a new user (or proceed as an anonymous user), then when a user logs out you should call initialize
again specifying a new externalId
. Note that this will reset the local store of which pages the user has viewed.