我已经搜索了所有QBUser教程,但找不到删除用户标签的方法。有人知道如何从应用程序中做到这一点,而不删除用户并重新创建它吗?
使用"编辑用户"API
http://quickblox.com/developers/SimpleSample-users-android#Update_own_profile
QBUser user = new QBUser();
user.setId(53779);
StringifyArrayList<String> tags = new StringifyArrayList();
tags.add("man");
user.setTags(tags);
QBUsers.updateUser(user, new QBEntityCallback<QBUser>(){
@Override
public void onSuccess(QBUser user, Bundle args) {
}
@Override
public void onError(QBResponseException errors) {
}
});