Zoom API works on local pc, shared hosting but NOT on dedicated server

Zoom API works fine on local PC (C#,Visual Studio 2019). It also worked well on shared hosting.

Since transferred website on dedicated server it does not work…but rest of the website works fine.

Any idea about the reasons that may cause this?

It works now. Added the following code and now it works:

client.ConfigureWebRequest((r) =>
** {**
** r.ServicePoint.Expect100Continue = false;**
** r.KeepAlive = true;**
** });**
** System.Net.ServicePointManager.ServerCertificateValidationCallback = (senderX, certificate, chain, sslPolicyErrors) => { return true; };**
** System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12;**

Glad you were able to resolve it! :slight_smile: