One project I'm working on right now in AIR uses custom headers requires passing two cookies, basically same name, different values.
something like:
urlRequest.requestHeaders.push(new URLRequestHeader("Cookie", cookie1));
urlRequest.requestHeaders.push(new URLRequestHeader("Cookie", cookie2));
Apparently AS3 doesn't like that and Charles shows only last cookie is being sent to the server, but not both. I did some search and seems like this is allowed(and the API specifically shows it needs two cookies).
So my question is how can I pass two cookies to the custom header using AS3 URLRequest, or can I even do that with URLRequest?
THANKS A BUNCH!!!