Hi all!
There is an rss page: https://totalcar.hu/rss
If I try to load with firefox, it fail without any error. If I try with Microsoft Edge or Chrome, it success.
If I want to download with this,
its result is always j.success = false, but even I can retrieve the good rss.xml with this:
Where (how) can I examine the reason of unsuccess?
There is an rss page: https://totalcar.hu/rss
If I try to load with firefox, it fail without any error. If I try with Microsoft Edge or Chrome, it success.
If I want to download with this,
B4X:
Dim j As HttpJob
j.Initialize("", Me)
j.Download(url)
Wait For (j) JobDone(j As HttpJob)
If j.Success Then
getRSS2(j)
Else
....
B4X:
If RSSLink.Contains("totalcar") Then
Dim html As String = j.ErrorMessage
res = True
Else
Dim html As String = j.getstring
End If