Spanish No Inicializado [Solucionado]

carlos7000

Well-Known Member
Licensed User
Longtime User
Hola a todos.

Estoy tratado de hacer una sencilla aplicación que me permita hacer trading en Binance.

Al tratar llamar al url "https://api.binance.com/api/v3/exchangeInfo" desde el navegador funciona bien, el servidor responde de forma correcta (no requiere autentificacion o parametros especiales). Pero al hacerlo desde la aplicación, que adjunto, me aparece este error:

<html><body><h2>404 Not found</h2></body></html>

Ademas dice

(Exception) Not initialized

Adjunto el proyecto para si alguien desea echarle una mirada y darme una ayudita.



De antemano, muchas gracias.
 

Attachments

  • Binance.zip
    10.3 KB · Views: 306

josejad

Expert
Licensed User
Longtime User
Hola:

No deberías usar jobdone, está obsoleto. Echa un ojo a este tutorial.

Esto funciona:
B4X:
    Dim j As HttpJob
    j.Initialize("", Me)
    j.Download("https://api.binance.com/api/v3/exchangeInfo")
    Wait For (j) JobDone(j As HttpJob)
    If j.Success Then
        Log(j.GetString)
    End If
    j.Release
 
Cookies are required to use this site. You must accept them to continue using the site. Learn more…