I'm trying to download the html rendered by this page: https://casino.sportingbet.com/pt-br/livecasino/c/liveroulette
I'm particularly interested in roulette results.
My first attempt was as follows (unsuccessful):
Can anybody help me?
I'm particularly interested in roulette results.
My first attempt was as follows (unsuccessful):
B4X:
Dim jj As HttpJob, tmp As String
jj.Initialize("", Me)
jj.Download("https://casino.sportingbet.com/pt-br/livecasino/c/liveroulette")
Wait For (jj) JobDone(jj As HttpJob)
If jj.Success Then
Log(DateTime.Time(DateTime.Now))
tmp = jj.GetString
File.WriteString("c:\temp", "roleta.txt", tmp)
jj.Release
Log("salvo")
Else
LogError(jj.ErrorMessage)
End If
jj.Release
Can anybody help me?
Last edited: