Use below code to export source code to text file. You can then study what's been returned from web service.
Sub Demo()
With CreateObject("MSXML2.serverXMLHTTP")
.Open "GET", "https://crownbet.com.au/sports/soccer", False
.setRequestHeader "Content-Type", "text/xml"
.send
x = .responseText
End With
Dim oPath As String: oPath = "C:\Test\crownbet.txt" 'Change path as needed
Dim intFF As Integer: intFF = FreeFile()
Open oPath For Output As #intFF
Print #intFF, x
Close #intFF
End Sub
It turns out that table is filled by function from JSON string.
You can find meat of data after "app.module.zendesk.zendeskController"
You can then use string manipulation to extract JSON string. Then use either RegExp, VBA-JSON or ScriptControl to parse JSON and output to Excel.
Bookmarks