I'm figuring out how to use the current cookie session (given or will be given by the web service randomly to me) before sending the HTTP request.
Here's how I do it in PHP.
$options = array(
..
CURLOPT_COOKIESESSION => TRUE
..);
curl_setopt_array($ch, $options);
$result = curl_exec($ch);
What is the equivalent code to be used when executing this in Excel VBA?
PS: I'm using WinHTTPRequest by the way.