Users represent users within your application. They are used to:
Each user should contain:
You can get users info on Stringee server as follows:
var userIds = ["user1", "user2"];
stringeeChat.getUsersInfo(userIds, function (status, code, message, users) {
console.log('status:' + status + ' code:' + code + ' message:' + message + ' users:' + JSON.stringify(users));
});
In which: