nickneykov 0 Posted July 15 Hello, I've been using Delphi for a long time, but in version 12.1 I noticed that the TCurlHTTPClient class exists. Is it possible for someone to provide examples of its use. I've been using the external library associated with libcurl.dll for several years. Is it already possible to create applications without it using the specified class? Greetings Nikolai Neikov Share this post Link to post
Dalija Prasnikar 1396 Posted July 15 You still need libcurl.dll if you want to use TCurlHTTPClient. It is a wrapper class for curl, but the curl itself is in the DLL. TCurlHTTPClient is THTTPClient descendant so you can easily switch between different HTTP implementations without changing other code. Share this post Link to post
DelphiUdIT 176 Posted July 15 (edited) Take from "System.Curl" Edited July 15 by DelphiUdIT Share this post Link to post
nickneykov 0 Posted July 15 Hello, yes i see i saw that but thought i'd ask anyway in case there are other settings. However, the question remains about some examples, because I did not find any description of use in the documentation. Dalija Prasnikar - Thanks for sharing your experience with the book . Greetings Nikolai Neikov Share this post Link to post