Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tariqhamid/739d248fc3441e107221d5d4a0e949d2 to your computer and use it in GitHub Desktop.
Save tariqhamid/739d248fc3441e107221d5d4a0e949d2 to your computer and use it in GitHub Desktop.
Using Excel VBA to Send HTTP GET Request to Web Server
Private Sub cmdKirimGET_Click()
Dim strResult As String
Dim objHTTP As Object
Dim URL As String
Set objHTTP = CreateObject("WinHttp.WinHttpRequest.5.1")
URL = "http://localhost/search.php"
objHTTP.Open "GET", URL, False
objHTTP.setRequestHeader "User-Agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)"
objHTTP.setRequestHeader "Content-type", "application/x-www-form-urlencoded"
objHTTP.send ("keyword=php")
strResult = objHTTP.responseText
Worksheets("Sheet1").Range("A10:A10") = strResult
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment