Jericho / ZoomNet

.NET client library for the Zoom.us REST API v2
MIT License
69 stars 46 forks source link

Add method for getting a meeting's join token for local recording #263

Closed karlovnv closed 1 year ago

karlovnv commented 1 year ago

https://marketplace.zoom.us/docs/api-reference/zoom-api/methods/#operation/meetingLocalRecordingJoinToken

GET /meetings/{meetingId}/jointoken/local_recording

Get a meeting's join token to allow for local recording. The join token lets a recording bot implemented using Zoom Meeting SDK to connect to a Zoom meeting. The recording bot can then automatically start locally recording. This supports both regular and raw local recording types.

Jericho commented 1 year ago

Easy enough. Something along these lines:

var joinToken = await client.Meetings.GetJoinTokenForLocalRecordingAsync(myMeetingId, cancellationToken).ConfigureAwait(false);
Jericho commented 1 year ago

I also noticed a few similar methods that were added to the API:

I will add these as well.

Jericho commented 1 year ago

:tada: This issue has been resolved in version 0.58.0 :tada:

The release is available on:

Your GitReleaseManager bot :package::rocket: