如何使用android编程更新syncano中的用户名和密码等用户数据?

时间:2016-04-28 09:11:57

标签: android mbaas syncano

如何使用android编程作为语法更新syncano中的用户名和密码等用户数据?

1 个答案:

答案 0 :(得分:1)

这是从Syncano android库的测试中获得的。

从用户创建开始:

User newUser = new User("username", "password");
Response<User> responseCreateUser = syncano.registerUser(newUser).send();
user = responseCreateUser.getData();

现在您可以更新他的密码:

user.setPassword("new password");
Response<User> responseUpdateUser = syncano.updateUser(user).send();

更新用户名的方式相同。您可以在https://github.com/Syncano/syncano-android/tree/master/library/src/test/java/com/syncano/library/tests

下的测试中找到大量示例和用例