Users

User List#

To retrive all registered users on MirrorFly SDK use below method. User list can also be retrived based on search key word, also this method supports pagination. This function will return the total number of pages.

warning

User presence and Profile instant update will not happen until a messege is sent to that particular user.

FlyChat.getUserList(PAGE_NUMBER, PER_PAGE_RESULT_SIZE, SEARCH_TERM).then((data){
var item = userListFromJson(data);
}).catchError((error) {
});

Refer this doc to know more about Profile Details Class

ArgumentTypeDescription
PAGE_NUMBERintPage number of user list default value 1
PER_PAGE_RESULT_SIZEintNumber of users per page default value 50
SEARCH_TERMStringtext characters for which search has to happen default value empty

Sync Contact#

warning

It will be only applicable for mobile number registration and contact book synchronization.

If mobile number is used as a primary id for communication in chat sdk then there has to be sync between user and server. The following code block initiate the contact sync and let the user communicate with their contacts who uses the client app too.

Note : In order to sync mobile contacts need to enable ChatManager.enableMobileNumberLogin

FlyChat.syncContacts(IS_FIRST_TIME);
ArgumentTypeDescription
IS_FIRST_TIMEbooleantrue for first time and false after when synchronising contacts

To observe contact sync events you can either implement or create a annonymous ProfileEventsListener interface and attach it to ChatEventsManager and detach the listener when no longer needed. To know more about other methods in ProfileEventsListener kindly visit Profile Events

FlyChat.onContactSyncComplete.listen(event){
};

To avoid unnecessay multiple contact sync calls observe the status of the contact sync beore calling syncContacts.

Get Registered Users#

Note : The registered contacts who are in your contacts will retrieved after the contact sync, those people's only observe your profile,user presence updates.

Once we started communicating , we can get the list of contact with chat data with whom we communicated so far.

FlyChat.getRegisteredUsers(FETCH_FROM_SERVER).then((value) {
}).catchError((onError) {
/* Error handling */
});

Refer this doc to know more about ProfileDetails Class

ArgumentDescriptionData type
FETCH_FROM_SERVERProfileProfile object which the updated value

Revoke Contact Sync#

If mobile number is used as a primary id for communication in chat sdk and contact sync have been completed then the following code block will delete user contacts and revoke the contact sync.

FlyChat.revokeContactSync().then((value) {
}).catchError((onError) {
/* Error handling */
});