Authentication and User Management
Procedure of Authentication of a User
GizoSdk.setToken(<clientId>, <clientSecret>);const userId = await GizoSdk.createUser();
if (userId != null) {
console.log(userId);
}const status = await GizoSdk.setUserId(<gizoUserId>);
console.log(status);Last updated