Authentication and User Management
Procedure of Authentication of a User
Gizo.shared.setToken(clientId: "<clientId>", clientSecret: "<clientSecret>")let userId = await Gizo.shared.createUser()
if let userId = userId {
let status = await Gizo.shared.setUserId(userId: userId)
print(status)
}let status = await Gizo.shared.setUserId(userId: <gizoUserId>)
print(status)Last updated