Skip to content

Instantly share code, notes, and snippets.

@ndthanh
Created January 16, 2018 10:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ndthanh/4947fc7ccccc3b3730c5d06f7841a11a to your computer and use it in GitHub Desktop.
Save ndthanh/4947fc7ccccc3b3730c5d06f7841a11a to your computer and use it in GitHub Desktop.
Sub testDebugPrint()
Dim xmlhttp As Object
Set xmlhttp = CreateObject("MSXML2.serverXMLHTTP")
xmlhttp.Open "GET", "https://reqres.in/api/users?page=2", False
xmlhttp.send
Debug.Print xmlhttp.responseText
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment