Skip to content

Instantly share code, notes, and snippets.

@hieptlccc
Created January 9, 2022 10:46
Show Gist options
  • Save hieptlccc/92e6ea65939186667e2f65190ba0553c to your computer and use it in GitHub Desktop.
Save hieptlccc/92e6ea65939186667e2f65190ba0553c to your computer and use it in GitHub Desktop.
signup.js - create cometchat account - webex clone
...
const createCometChatAccount = async ({ id, fullname, avatar }) => {
const authKey = `${process.env.REACT_APP_COMETCHAT_AUTH_KEY}`;
const user = new cometChat.User(id);
user.setName(fullname);
user.setAvatar(avatar);
return await cometChat.createUser(user, authKey);
};
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment