Search found 2228 matches: api

Return to advanced search

Re: Pruebas con WhatsApp

... en el tiempo y además están sujetas a demasiadas casuísticas pre Asi que como mejor alguna solución "estable" python, a través del API con python o un ejecutable python que haga el trabajo, después de recibir unos parámetros (*) (*) Estaría bien que tuviéramos un .exe python con ...
by paquitohm
Wed Apr 17, 2024 4:52 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pruebas con WhatsApp
Replies: 7
Views: 208

Compiling error Antonio Nages resolved

Antonio today sent me two libs I have this error Progetto: test, Ambiente: bcc7Harbor: [1]:Harbour.Exe test.prg /m /n0 /gc1 /es2 /kh /a /iC:\Work\fwh\include /iC:\work\HARBOUR\Include /jC:\Work\errori\TEST_G~1\I18n\Main.hil /iinclude;c:\work\fwh\include;C:\work\HARBOUR\include /oObj\test.c Harbour 3...
by Silvio.Falconi
Fri Apr 12, 2024 7:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Compiling error Antonio Nages resolved
Replies: 7
Views: 196

Problemas con nuevas versiones de xHarbour y BCC

Saludos Estimados Tengo algunos probemas al querer utilizar las nuevas versiones, ya sea de xHb o de C, primero el problema del xHb, indicare abajo hasta donde funciono Ok y desde donde empiezan los problemas: Funciona OK: FWH 24.02, xHarbour 1.2.3.10264, BCC 7.4 Da error: FWH 24.02, xHarbour 1.2.3....
by Enrrique Vertiz
Sat Mar 23, 2024 12:25 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problemas con nuevas versiones de xHarbour y BCC
Replies: 8
Views: 1536

Re: How to include hbCurl?

... tried the 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 ...
by Otto
Wed Mar 20, 2024 4:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to include hbCurl?
Replies: 13
Views: 2922

Re: SWAGGER-UI para documentar nuestras API.

I can read several data with the API, but 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 ...
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: 1952

Re: How to include hbCurl?

I can read several data with the API, but 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 ...
by Marc Venken
Tue Mar 19, 2024 10:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to include hbCurl?
Replies: 13
Views: 2922

Re: SWAGGER-UI para documentar nuestras API.

I got it working with this code from Otto (Eng. Forum) :    DCOM := 'cmd /c curl -sS https://us8.api.mailchimp.com/3.0/ping --user anystring:'+cApi+' > clogrooms.txt'  // Working   DCOM := 'cmd /c curl -sS https://us8.api.mailchimp.com/3.0/campaigns --user anystring:'+cApi+' ...
by Marc Venken
Sat Mar 09, 2024 9:07 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: SWAGGER-UI para documentar nuestras API.
Replies: 9
Views: 1952

Re: How to include hbCurl?

... 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" I want ...
by Marc Venken
Fri Mar 08, 2024 10:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to include hbCurl?
Replies: 13
Views: 2922

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 fol...
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: 1952

Re: SWAGGER-UI para documentar nuestras API.

Dear Marc Mailchimp exposes Marketing API (and others) in OAS format at https://api.mailchimp.com/schema/3.0/Swagger.json This format can be read with Postman https://www.postman.com/ You can import from File ...
by Joaquim Ferrer
Wed Mar 06, 2024 6:14 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: SWAGGER-UI para documentar nuestras API.
Replies: 9
Views: 1952

Re: SWAGGER-UI para documentar nuestras API.

Hi. Quim and I, connect using Postman, 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: 1952

Re: SWAGGER-UI para documentar nuestras API.

So, This is for building Swagger docu.. I'm trying to connect to MailChimpt-API that is based on Swagger, so maybe you guys can help me cUrl:=  "https://us8.api.mailchimp.com/3.0/campaigns? --user anystring:cCode "MsgRun( cUrl, "READING FORUM ...
by Marc Venken
Tue Mar 05, 2024 9:59 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: SWAGGER-UI para documentar nuestras API.
Replies: 9
Views: 1952

Re: SWAGGER-UI para documentar nuestras API.

Genial Quim! Muchas gracias para explicarlo tan detalladamente.
by thefull
Tue Mar 05, 2024 2:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: SWAGGER-UI para documentar nuestras API.
Replies: 9
Views: 1952

Re: SWAGGER-UI para documentar nuestras API.

... Una vez tenemos arrancado y funcionando docker, seguir los pasos indicados : # Creamos dockerdocker pull swaggerapi/swagger-ui# Abrimos el puerto 80, donde correrá swagger-ui y atacará a nuestro api en el puerto 8002docker run -p 80:8080 -e SWAGGER_JSON_URL=http://192.168.1.107:8002/v3/api-docs ...
by Joaquim Ferrer
Tue Mar 05, 2024 10:37 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: SWAGGER-UI para documentar nuestras API.
Replies: 9
Views: 1952

Re: SWAGGER-UI para documentar nuestras API.

Muchas gracias Rafa! :-)
by Antonio Linares
Tue Mar 05, 2024 6:36 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: SWAGGER-UI para documentar nuestras API.
Replies: 9
Views: 1952
Next

Return to advanced search