I'm working on a project in Delphi 10.1 Berlin which integrates with GitHub. This project intends to download repositories via ZIP files. However, I'm facing some issues.
Originally, I chose (as always) to use Indy to integrate with the GitHub API. I've always used Indy for all web API consumption. However, I'm not having any success using it with GitHub.
The API requires HTTPS. I have obtained the latest OpenSSL DLLs for use with Indy, and am using the Indy library with Delphi 10.1 Berlin.
I have setup a TIdHTTP
component with a TIdSSLIOHandlerSocketOpenSSL
attached. I've set that IO Handler to all the Method
options available, and not one gives me a valid response. I get one of two different responses...
- When using
sslvSSLv3
, I get:error:14094410:SSL routines: SSL3_READ_BYTES:sslv3 alert handshake failure.
- When using
sslvTLSv1_2
, I get:error:1409442E:SSL routines:SSL_READ_BYTES:tlsv1 alert protocol version
I had to resort to TRESTClient
for now just to be able to work with the API. But it doesn't handle binary properly.
The test is as simple as https://api.github.com
. I can call that in Chrome and Postman, and get a response. Just not via Indy.
How can I accomplish a connection with GitHub's API via Delphi's Indy library?
SSLVersions
property instead of itsMethod
property. Try setting theSSLVersions
to[sslvTLSv1, sslvTLSv1_1, sslvTLSv1_2]
– Remy Lebeau