Schedule a Meet
#
Send Meet messageA meet message
typically refers to a message or communication related to scheduling or planning a meeting. These messages can include information about the Scheduled date,time and meet link.
You can send the created meet link in previous step by using the sendMeetMessage()
method. You can share the title, link and schdueled date and time using this method.
caution
If Group call feature is unavailable for your plan, then it will throw 403 exception
Argument | Type | Description |
---|---|---|
MESSAGE_PARAMS | MeetMessage | Object to hold the parameters of the meet message |
CALLBACK | SendMessageCallback | callback to observe the action status |
#
Receive Meet MessageTo receive a Meet message from another user you must implement the messageListener function. Itβs a function that will be triggered whenever you receive a new message or related event in the chat.
info
To learn more on message listener callbacks, see the MessageEventsCallbacks
.
caution
To join a meet, Microphone and Camera usage permissions were required. Meet SDK also provides method to check those permissions like CallManager.isAudioCallPermissionsGranted()
and CallManager.isVideoCallPermissionsGranted()
. We can also make use of these methods too.