Sendbird
Functions to integrate SendBird chat into your app.
Initialize
window.WTN.SendBird.sendbirdInitialize({
userId: "user123",
nickname: "John",
profileurl: "https://example.com/avatar.png",
callback: function (response) {
console.log(response);
},
});import { sendbirdInitialize } from "webtonative/build/SendBird";
sendbirdInitialize({
userId: "user123",
nickname: "John",
profileurl: "https://example.com/avatar.png",
callback: (response) => {
console.log(response);
},
});Key
Type
Required
Description
Is Initialized
Key
Type
Description
Is Connected
Key
Type
Description
Get User ID
Key
Type
Description
Update User Info
Key
Type
Required
Description
Key
Type
Description
Create Group Channel
Key
Type
Required
Description
Key
Type
Description
Show UI
Key
Type
Description
Show Channel UI
Key
Type
Required
Description
Key
Type
Description
Disconnect
Key
Type
Description
Logout
Key
Type
Description
Last updated