Discussions

Ask a Question
Back to All

Error on calling MediaSilo api

We were using a .net C3 web application to upload video on MediaSilo using MediaSilo APIs. Code was working fine earlier but recently it is started breaking up with following error:
The underlying connection was closed: An unexpected error occurred on a send.

The fix that we found that we need to set security protocol to TLS12.
ServicePointManager.Expect100Continue = true;
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;

Is there any recent change in the MediaSilo API wrt security protocol.