Using external session identifiers
Changing the way sessions are handled
nostojs((api) => {
api.visit.setCustomerIdentifierService({
getCustomerId: () => {
return platform.getSID()
},
setCustomerId: id => {
// Do nothing as you do not want to overwrite
// the session identifier.
}
})
});Last updated
Was this helpful?