Replies: 2 comments 8 replies
-
|
You can see an example here where we retrieve the recording files for a given user. As far as writing the content of a stream, it should be as simple as something like this: using (var outStream = File.OpenWrite("path to new file"))
{
stream.CopyTo(outStream);
}with my limited knowledge of VB.NET, I was able to convert the C# code to this: Dim outStream As new FileStream("path to new file", FileMode.Create)
sourceStream.CopyTo(outStream )Let me know if this helps. |
Beta Was this translation helpful? Give feedback.
3 replies
-
|
ZoomNet relies on the default timeout HttpClient settings but you certainly can provide your own HttpClient and configure the timeout to any value you want. Something like this: var myHttpClient = new HttpClient()
{
Timeout = TimeSpan.FromMinutes(10) // This is an exceedingly long timeout for demonstration purposes.
};
var apiKey = Environment.GetEnvironmentVariable("ZOOM_JWT_APIKEY", EnvironmentVariableTarget.User);
var apiSecret = Environment.GetEnvironmentVariable("ZOOM_JWT_APISECRET", EnvironmentVariableTarget.User);
var connectionInfo = new JwtConnectionInfo(apiKey, apiSecret);
var client = new ZoomClient(connectionInfo, myHttpClient); |
Beta Was this translation helpful? Give feedback.
5 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.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm trying to download a video file and keep getting a taskcanceled error,
I can get the download url filename, so authentication is ok,
but when i try this
i get taskcanceled error, do i need to do something with the token for a callback ?, is there any examples anywhere, i don't have a lot of experience
Thanks
Beta Was this translation helpful? Give feedback.
All reactions