Author: diego jaques
0 Views
0 Downloads
0 Favorites
dados_web

#property copyright "diego jaques"
#property version "1.00"

void OnStart()
  {
   string cookie=NULL, headers;
   char data[], result[];
   
   string url = "https://www.bitmex.com/api/v1";
   string query = "?filter=";
   
   ResetLastError();
   
   int res = WebRequest("GET",url+query,cookie,NULL,5000,data,0,result,headers);
   
   if(res == -1)// tem erro!!!
     {
      Print("aqui tem erro. erro =",GetLastError() );
     } 
    else// sem erro!
      {
      Print("deu certo!!!!");
      string texto = CharArrayToString(result);
      Print(texto);
       
      }  
      
  }

Comments