Ramesh Deo
Member
Hi All,
Hope you all doing well. I request you all for a little help to login into any website using post method and then doing web scraping. will be thankful if any help on this query.
Thank you so much all.
Here is the code:
Dim oReq As Object
Dim url As String
Set oReq = CreateObject("MSXML2.XMLHttp")
url = "https://www.abc.com/signin/u/"
With oReq
.Open "POST", url, False
.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
.send "method=login&handle=cautionmp&pass=*"
End With
Set oReq = Nothing
Ap
Hope you all doing well. I request you all for a little help to login into any website using post method and then doing web scraping. will be thankful if any help on this query.
Thank you so much all.
Here is the code:
Dim oReq As Object
Dim url As String
Set oReq = CreateObject("MSXML2.XMLHttp")
url = "https://www.abc.com/signin/u/"
With oReq
.Open "POST", url, False
.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
.send "method=login&handle=cautionmp&pass=*"
End With
Set oReq = Nothing
Ap