Search found 651 matches: curl

Return to advanced search

RecordSet via Web

I have been using an ADODB RecordSet object to connect to my server over the internet. oRs:Open( cUrl ). Actually very fast, works well. What I don't know, or can't figure out is if I can use this on a secure site. Can't seem to get it to work. It works if I use Hamachi ...
by byron.hopp
Thu Mar 28, 2024 7:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RecordSet via Web
Replies: 0
Views: 44

Re: xHarbour.org updated!

... tipssl.liblibssl.liblibcrypto.libtip.lib And put these DLLs in the same directory of your application: libssl-3.dlllibcrypto-3.dll For the CURL, the needed liBs are: hbcurl.liblibcurl.lib And the DLL is: libcurl.dll A sample for CURL is: #include "Fivewin.ch"#include "Hbcurl.ch"FUNCTION ...
by Enrico Maria Giordano
Mon Mar 25, 2024 3:47 pm
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 154
Views: 30989

Re: How to include hbCurl?

... answer ChatGPT gives you? Best regards, Otto It seems like you're trying to add tags to a member in a MailChimp list using the MailChimp API and curl in a command line environment. The issue appears to be with the way you're formatting the JSON data in your curl command. Let's break down the ...
by Otto
Wed Mar 20, 2024 4:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to include hbCurl?
Replies: 13
Views: 503

Re: SWAGGER-UI para documentar nuestras API.

... struggle with the one that can change a TAG (like a groupname) into Mailchimp. This is working, and I get the tags from a email DCOM := 'cmd /c curl -sS https://us8.api.mailchimp.com/3.0/lists/'+cLists+'/members/'+cSecure_Email+'/tags --user anystring:'+cApi+' > clogrooms.txt' In order to ...
by Marc Venken
Tue Mar 19, 2024 10:14 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: SWAGGER-UI para documentar nuestras API.
Replies: 9
Views: 448

Re: How to include hbCurl?

... struggle with the one that can change a TAG (like a groupname) into Mailchimp. This is working, and I get the tags from a email DCOM := 'cmd /c curl -sS https://us8.api.mailchimp.com/3.0/lists/'+cLists+'/members/'+cSecure_Email+'/tags --user anystring:'+cApi+' > clogrooms.txt' In order to ...
by Marc Venken
Tue Mar 19, 2024 10:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to include hbCurl?
Replies: 13
Views: 503

Re: xHarbour.org updated!

xHarbour.org has been updated with the new xHarbour builds Rev. 10279!

http://xharbour.org/index.asp?page=download/windows/binaries_win

Please note that they now contains all the LIBs and DLLs required for OpenSSL, CURL, ADS and MySQL.
by Enrico Maria Giordano
Sat Mar 16, 2024 4:00 pm
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 154
Views: 30989

Re: How to include hbCurl?

Otto, Thanks for the sample.

I got it working now to read with cUrl...

Now digging into the hard part of getting all elements :D
by Marc Venken
Sat Mar 09, 2024 8:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to include hbCurl?
Replies: 13
Views: 503

Re: How to include hbCurl?

Marc, you can redirect to a file: clogrooms and then read with memoread. Regards, Otto DCOM := 'cmd /c "' +; cCurlPath + 'curl.exe -u username:password -i -k -F "fileToUpload=@' +; aSrc[I] + '" -F "uploadDirectory=' + cuploadDirectory + '" ' +; cEndpointRooms ...
by Otto
Fri Mar 08, 2024 10:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to include hbCurl?
Replies: 13
Views: 503

Re: How to include hbCurl?

... and MSVC It works fine. Also include the libcurl.dll It also works for 64 bit with those libraries and the 64 bit dll Tim Tim, Are you using cUrl for reading API's ? By any change the API from Mailchimp ? curl -sS "https://us8.api.mailchimp.com/3.0/ping" --user "anystring:cApi" ...
by Marc Venken
Fri Mar 08, 2024 10:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to include hbCurl?
Replies: 13
Views: 503

Re: SWAGGER-UI para documentar nuestras API.

Hi, I gave a quick look in Postman. Heavy for a not programmer like me )))) But I was able to get information from the command line with cUrl. Of cource the implementation info FW will be the goal. Looking into the forum it seems that we have to link extra 2 libs and place a DLL into the program ...
by Marc Venken
Fri Mar 08, 2024 9:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: SWAGGER-UI para documentar nuestras API.
Replies: 9
Views: 448

Re: SWAGGER-UI para documentar nuestras API.

... but your have documentation in https://mailchimp.com/developer/marketing/api/root/list-api-root-resources/ Your need {apikey}, etc.. Example using curl from command line; curl -X GET \ 'https://${dc}.api.mailchimp.com/3.0/?fields=<SOME_ARRAY_VALUE>&exclude_fields=<SOME_ARRAY_VALUE>' ...
by thefull
Wed Mar 06, 2024 5:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: SWAGGER-UI para documentar nuestras API.
Replies: 9
Views: 448

Re: How to include hbCurl?

HI,
you can generate C code from the CURL command line
adding "--libcurl filename.c" to the end of the command line

below is an example:
curl http://example.com --libcurl example.c

look at the link
https://everything.curl.dev/libcurl/libcurl
by vensanto
Wed Mar 06, 2024 5:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to include hbCurl?
Replies: 13
Views: 503

Re: How to include hbCurl?

Dear Otto,

> What are the disadvantages of shellExec()?

I guess the only problem is that the user does not have curl.exe installed or at the right path
by Antonio Linares
Sun Mar 03, 2024 8:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to include hbCurl?
Replies: 13
Views: 503

Re: How to include hbCurl?

Hello Tim, thank you for your help. While I was looking for a solution yesterday to make cUrl common in my desktop program, I then tried a solution with the command prompt and shellExecute. That works well. What are the disadvantages of shellExec()? I have been using ...
by Otto
Sun Mar 03, 2024 8:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to include hbCurl?
Replies: 13
Views: 503

Re: xBrowse with UrlLink

... ..." ,solo así podríamos tener el efecto de color over con el mouse oURL:= New( nTop, nLeft, oWnd, lPixel, lDesign, oFont, cMsg, cURL, cToolTip, nClrInit, nClrOver, nClrVisit, lTransp )
by Silvio.Falconi
Wed Feb 28, 2024 8:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse with UrlLink
Replies: 3
Views: 144
Next

Return to advanced search

cron