Replies: 2 comments
|
The functionality to download a recording file is already built-in ZoomNet, so no need to hand craft the URL to download the file. However, I just realized that the var fileStream = await client.CloudRecordings.DownloadFileAsync(recordingFile, cancellationToken).ConfigureAwait(false);but it's not available due to the fact that it's not on the interface. I will resolve this issue and publish an update ASAP. Short term work around is to cast the var fileStream = await ((CloudRecordings)client.CloudRecordings).DownloadFileAsync(recordingFile, cancellationToken).ConfigureAwait(false); |
0 replies
|
Version 0.33.0 published with a fix for the missing method on the ICloudRecordings interface. Let me know if this answers your question. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
To access cloud recordings there is a property called download_url, but this is password protected. To access it directly you need to append a parameter called access_token which contains the JWT.
Is there anyway to get the JWT as a string using the JwtConnectionInfo object?
Thanks
All reactions