Applozic は初めてで、Android アプリに統合しています。apploz サーバーにログインすると、これが
これがログイン時の私のコードです
User user = new User();
user.setUserId(UserID);
user.setDisplayName(strFullName);
user.setEmail(loginEmail); //optional
user.setAuthenticationTypeId(User.AuthenticationType.APPLOZIC.getValue());
user.setPassword(loginPass);
user.setImageLink("");
mAuthTask = new UserLoginTask(user, listener,context);
mAuthTask.execute((Void) null);