Search found 27 matches: anystring

Return to advanced search

Re: How to include hbCurl?

... documentation: ```bash curl -X POST \ https://${dc}.api.mailchimp.com/3.0/lists/{list_id}/members/{subscriber_hash}/tags \ --user "anystring:${apikey}" \ -d '{"tags": [{"name": "tagName", "status": "active"}], "is_syncing": ...
by Otto
Wed Mar 20, 2024 4:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to include hbCurl?
Replies: 13
Views: 2908

Re: SWAGGER-UI para documentar nuestras API.

... 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 add a Tag this should be executed, but I allways fale in passing the correct data This is NOT working ...
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: 1944

Re: How to include hbCurl?

... 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 add a Tag this should be executed, but I allways fale in passing the correct data This is NOT working ...
by Marc Venken
Tue Mar 19, 2024 10:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to include hbCurl?
Replies: 13
Views: 2908

Re: How to include hbCurl?

... 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 to read the result from this command insite FW. and give the command also from FW
by Marc Venken
Fri Mar 08, 2024 10:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to include hbCurl?
Replies: 13
Views: 2908

Re: SWAGGER-UI para documentar nuestras API.

... curl -X GET \ 'https://${dc}.api.mailchimp.com/3.0/?fields=<SOME_ARRAY_VALUE>&exclude_fields=<SOME_ARRAY_VALUE>' \ --user "anystring:${apikey}"' Regards
by thefull
Wed Mar 06, 2024 5:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: SWAGGER-UI para documentar nuestras API.
Replies: 9
Views: 1944

Re: FTP with Harbour / MSVC / FWH issues

Another , how use ftp over TLS ? hLib = LOADLIBRARY( "wininet.dll" ) hInternet := INETOPEN( "Anystring", 1, 0, 0, 0 ) hConnect := INETCONNECT( hInternet, "www.xtech.com.cn",21, "xxx@xtech.com.cn", "erp6.5", 1, 0,0 ) if !EMPTY( ...
by ShumingWang
Wed Jun 27, 2018 8:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FTP with Harbour / MSVC / FWH issues
Replies: 8
Views: 2226

Re: Tftp - Directory no retorna la hora - Funciona a Medias

... ) local hInternet, hConnect local clastFileinDir:=space(260) default cMask := "*.*" hInternet = INTERNETOPEN( "Anystring", INTERNET_OPEN_TYPE_DIRECT, 0, 0, 0 ) hConnect = INTERNETCONNECT( hInternet, cIP, INTERNET_INVALID_PORT_NUMBER, cUser, cPass, INTERNET_SERVICE_FTP, ...
by Verhoven
Mon Jun 24, 2013 5:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Tftp - Directory no retorna la hora - Funciona a Medias
Replies: 5
Views: 1412

Re: No puedo acceder a mi FTP

... DOWNLOAD( oPrg ) LOCAL hInternet, hConnect, hSource, hDest, nRead LOCAL cData := SPACE( 1024 ) LOCAL nPos := 0 hInternet = INTERNETOPEN( "Anystring", INTERNET_OPEN_TYPE_DIRECT, 0, 0, 0 ) hConnect = INTERNETCONNECT( hInternet, "myftpaddress", INTERNET_INVALID_PORT_NUMBER, ...
by mgsoft
Wed Aug 03, 2011 1:19 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: No puedo acceder a mi FTP
Replies: 4
Views: 982

Re: Ayuda Por Favor

Julio, "Anystring" sirve. Es cualquier nombre que quieras usar. Prueba a usar MsgInfo() para ver que valores toman hInternet y hConnection: hInternet = INTERNETOPEN( "Anystring", INTERNET_OPEN_TYPE_DIRECT, 0, ...
by Antonio Linares
Thu Jan 28, 2010 5:58 pm
 
Forum: FiveWin para Pocket PC
Topic: Ayuda Por Favor
Replies: 6
Views: 1628

Re: Ayuda Por Favor

... antes, y puedo navegar en el, es posible que me haya equivocado en el PRG, puedes revirsarlo y decirme si el error es ahi, hermano. Donde dice Anystring hay que colocar algo. 2.- Existe alguna forma de llamar al Outlook desde programacion. Y gracias nuevamente por tu ayuda mi amigo. PRG - Ftp: ...
by Julio Perez
Thu Jan 28, 2010 3:33 pm
 
Forum: FiveWin para Pocket PC
Topic: Ayuda Por Favor
Replies: 6
Views: 1628

Re: FTP Again

... static function Connect() LOCAL hInternet, hConnect // I have tried "anystring" as well as the IP hInternet = INTERNETOPEN( "99.9.9.999", INTERNET_OPEN_TYPE_DIRECT, 0, 0, 0 ) if hInternet == 0 MsgInfo('No ...
by Colin Haig
Sun Jul 12, 2009 1:08 am
 
Forum: FiveWin for Pocket PC
Topic: FTP Again
Replies: 8
Views: 2109

FTP Again

... the file is never transferred. Any ideas greatfully accepted. static function Connect() LOCAL hInternet, hConnect hInternet = INTERNETOPEN( "Anystring", INTERNET_OPEN_TYPE_DIRECT, 0, 0, 0 ) if hInternet == 0 MsgInfo('No Internet') endif hConnect = INTERNETCONNECT( hInternet,"99.9.9.99",INTERNET_DEFAULT_FTP_PORT, ...
by Colin Haig
Thu Jul 09, 2009 9:35 am
 
Forum: FiveWin for Pocket PC
Topic: FTP Again
Replies: 8
Views: 2109

Problema con al descargar un fichero por ftp

... del fichero que se quiere bajar ip_ftp:= 'aqui va la ip del ftp' aux=GPRSCONNECT() &&establecemos la conexión hInternet := InternetOpen( "Anystring", INTERNET_OPEN_TYPE_DIRECT, 0, 0, 0 ) &&en hInternet nos devuelve un valor que si es cero indica que no se ha podido establecer IF ...
by Elias Torres
Thu Nov 20, 2008 11:18 am
 
Forum: FiveWin para Pocket PC
Topic: Problema con al descargar un fichero por ftp
Replies: 9
Views: 2753

... 2 do case case regis=0 CursorWait() */ Sincroniza com o servidor FTP */ Para retirar informação hInternet = INTERNETOPEN( "Anystring", INTERNET_OPEN_TYPE_DIRECT, 0, 0, 0 ) IF hINTERNET = 0 CursorWE() MSGINFO("Não Existe Ligação á Net) Return .f. else hConnect = INTERNETCONNECT( ...
by rasptty
Sun Sep 21, 2008 12:04 pm
 
Forum: FiveWin for Pocket PC
Topic: FTP Uplaod ERROR
Replies: 2
Views: 991

Upload files via FTP

... INTERNET_FLAG_TRANSFER_BINARY 2 STATIC hLib FUNCTION MAIN() LOCAL hInternet, hConnect hLib = LOADLIB32( "wininet.dll" ) hInternet = INETOPEN( "Anystring", INTERNET_OPEN_TYPE_DIRECT, 0, 0, 0 ) hConnect = INETCONNECT( hInternet, "ftp address", INTERNET_INVALID_PORT_NUMBER, "userid", "password", ...
by Romeo
Fri Sep 19, 2008 4:56 pm
 
Forum: All products support
Topic: Upload files via FTP
Replies: 3
Views: 1414
Next

Return to advanced search