you need to make sure that you rask server is capable of getting information about users, for instance you can register user group callback like this:
UserGroupCallbackManager.getInstance().setCallback(userGroupCallback);
where userGroupCallback is instance of implementation of UserGroupCallback interface for example DefaultUserGroupCallbackImpl
HTH