Skip to main content

Init SDK

Initialize SDK

On the client side, the first interaction with the Dyte library is to initialize it with the token from the previous steps. After this step the SDK initializes all network and media related capabilities and you can render your pre-call preview screen after this.

Your client side code

const [meeting, initMeeting] = useDyteClient();

useEffect(() => {
initMeeting({
authToken: '<auth-token>',
defaults: {
audio: false,
video: false,
},
});
}, []);

// meeting is 'undefined'

return (
<DyteSetupScreen meeting={meeting} mode="fill" />
)

Execute

Your Application