Content Share
Content share provides the facility to share the content within the meeting, thereby you can enhance the collaborative experience of the meetings. Web Client SDK currently supports content share in the form of full device's screen share which can be accessed via ContentService method.
webclientSDK.meetingService.contentService.contentShareState();
Browser Requirements
Call isContentShareSupported to ensure that your browser can support screen share.
webclientSDK.meetingService.contentService.isContentShareSupported
- OS that does not support screen share (For e.g.: Safari on Desktop below 15.0 or any Mobile browser)
Managing the Screen Share
startContentSharemethod is used to initiate ContentShareService. To initiate the screen share, use the following command.webclientSDK.meetingService.contentService.startContentShare();
receivingContentSharemethod is used to receive Screen Share. You can receive the screen share content from other participants by using the following command.webclientSDK.meetingService.contentService.receivingContentShare();
stopContentSharemethod is used to stop the Screen Share. Use the following command to stop the active content sharing in the meeting.webclientSDK.meetingService.contentService.stopContentShare();
Technical Limitation
The technical limitation for content sharing from the meeting.
- Content Share is not supported on mobile browsers.
- On desktop, for Safari browser, Content share is only supported on Safari 15.0 or higher.