On Fri, Mar 20, 2015 at 11:54 PM, fredvs <fi...@hotmail.com> wrote:

> Hello.
>
> First of all, congratulation for fpHttpClient.pas.
> It works directly, like charms, without to install any dependencies. =>
> wow.
>
> I am able to do internet audio streaming with it, perfect. ;-)
>
> Hum, while trying to access Https sites, i get errors. ;-(
>
> In begin of fpHttpClient.pas, there is =>
>
> > Todo:
> >  * Https support.
>
> Could it be part of the problem ?
> Are there plan to enable Https support ?
>
> Thanks.
>
> Fre;D
>
> -----
> Many thanks ;-)


It is already implemented in trunk. So you just:

program project1;

{$mode objfpc}{$H+}

uses
  fphttpclient;

begin
  WriteLn(TFPHTTPClient.SimpleGet('https://www.google.com/humans.txt'));
end.

-- 
Silvio Clécio
My public projects - github.com/silvioprog
_______________________________________________
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

Reply via email to