TLS sslv3 hankshake error

I am using a Tcl script to extract from several APIs, and suddenly some APIs stopped working. eg:

set data [http_call_get https://api.vineapp.com/timelines/popular?page=1&anchor=1]

answers the error:

SSL channel "sock624": error: sslv3 notification failure failed

It is odd that two out of five APIs from different sites stopped working for an hour or each other, so I feel that something has changed with the compatibility of the tls tl1.6.3.1 tcl package, which is bound to ":: http :: register https 443 :: tls :: socket "

I tried three different machines (2 x Windows and ubuntu).

+4
source share
1 answer

The sites you are trying to connect to have probably disabled sslv3 due to a poodle vulnerability.

, tcl script TLS.

+3

All Articles