Authentication and User Management
Procedure of Authentication of a User
Gizo.setToken(<clientId>, <clientSecret>);CoroutineScope(Dispatchers.IO).launch {
val userId = Gizo.createUser();
if (userId != -1) {
Log.d("tag", userId.toString());
}
}CoroutineScope(Dispatchers.IO).launch {
val status = Gizo.setUserId(<gizoUserId>)
Log.d("tag", status.toString());
}Last updated