ユーザーは、自分が所属しているグループの一覧を取得できます。
所属しているグループの一覧を取得するサンプルコードを以下に示します。
// Get the currently logged-in user. KiiUser user = KiiUser.getCurrentUser(); try { // Get a list of groups that the current user is a member of. List<KiiGroup> memberGroups = user.memberOfGroups(); for (KiiGroup group : memberGroups) { // Do something. } } catch (IOException e) { // Handle the error. } catch (AppException e) { // Handle the error. }
// Get the currently logged-in user. KiiUser user = KiiUser.getCurrentUser(); // Get a list of groups that the current user is a member of. user.memberOfGroups(new KiiUserCallBack() { @Override public void onMemberOfGroupsCompleted(int token, KiiUser user, List<KiiGroup> groupList, Exception exception) { if (exception != null) { // Handle the error. return; } for (KiiGroup group : groupList) { // Do something. } } });