Nelson78
Well-known Member
- Joined
- Sep 11, 2017
- Messages
- 526
- Office Version
- 2007
Hello everybody.
I'm using excel vba and
to navigate a site.
This is the code:
Now, I need to catch names and values concerning the 4 cookies you can see in Fiddler (I've cripted them with red lines, but I think the matter is understandable),
How can I perform the task?
Thank's in advance.
I'm using excel vba and
VBA Code:
Set objHTTP = CreateObject("MSXML2.XMLHTTP")
This is the code:
Code:
With objHTTP
.Open "GET", URL, False
.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
.send
strResponse = .responseText
Sheets(2).Range("a1") = strResponse
End With
Now, I need to catch names and values concerning the 4 cookies you can see in Fiddler (I've cripted them with red lines, but I think the matter is understandable),
How can I perform the task?
Thank's in advance.