WebSDK Component View language

Description
Component meeting app was implemented through GitHub - zoom/meetingsdk-react-sample: Use the Zoom Meeting SDK in a React App.

I have a few questions.

  1. Is Korean not supported in Component View?

  2. Can I turn off the chat option?

  3. There is no gallery view, how do I implement it in react app?

anybody help me plz…

Which Web Meeting SDK version?
Web SDK 2.5

Meeting SDK Code Snippets
client.init({
debug: true,
zoomAppRoot: meetingSDKElement,
language: ‘kr-KR’, // not support?
customize: {
meetingInfo: [‘topic’, ‘host’, ‘mn’, ‘pwd’, ‘telPwd’, ‘invite’, ‘participant’, ‘dc’, ‘enctype’],
toolbar: {
buttons: [
{
text: ‘Custom Button’,
className: ‘CustomButton’,
onClick: () => {
console.log(‘custom button’);
}
}
]
}
}
});

Device (please complete the following information):

  • Browser: [Chrome]

yes there is a korean language file ‘ko-KO’, if it’s useable you have to test

https://source.zoom.us/2.5.0/lib/lang/ko-KO.json

there seems to be an error in the name of the file and the language ID - correct should be “ko-KR” or “ko-KOR”, not “ko-KO” !!!

you have to implement Cross-Origin Isolation or Credentialless Headers for gallery view

https://marketplace.zoom.us/docs/sdk/overview/websdk-gallery-view/

Jürgen

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.