If you HTTPS is an invalid certificate then you need set this:
Code: Select all | Expand
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0);
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0);
Otherwise you dont need change anything and it will works.

Code: Select all | Expand
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0);
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0);
Code: Select all | Expand
Error description: BASE / 1081 error Operation not supported: TIPCLIENTHTTP: New ()
Args:
[1] = O TIPCLIENTHTTP
[2] = C https
cnavarro wrote:You are welcome
Gabriel, explain better what you need
cnavarro wrote:Well, the best thing to do is to do it in Harbour, so you will not have trouble finding the libraries, or at least it will be easier, but in any case, doing it with CreateObject is a good solution to access a WebService.
What version of Fivewin do you use?
Code: Select all | Expand
// for JSON
jsonData := ExecuteURL( cURL , aParams , "JSON" ) ;
// for Image
oImg := ExecuteURL( cURL , aParams , "IMG" ) ;
// for String
cStr1 := ExecuteURL( cURL , aParams , "STR" ) ;