Get HTTP response issue

Hello, I used Xojo.Net.HTTPSocket to post some data to my API URL and get cookies from server.
The following is the response:

HTTP/1.1 200 OK
Content-Length: 927
Content-Type: text/html; charset=utf-8
Server: beegoServer:1.4.2
Set-Cookie: beegosessionID=cb989ff6545cb585a976312d7243f02e; Path=/; HttpOnly
Set-Cookie: uid=80085; Max-Age=21900; Path=/
Set-Cookie: jid=100015; Max-Age=21900; Path=/

When I use method ResponseHeader(“Set-Cookie”), I can only get the first cookie beegonsessionID.
Can anyone tell me how to get the second cookie uid and third cookie jid?

Thanks very much!

My understanding is that with the new Xojo.Net.HTTPSocket you don’t need to expressly get the cookies and set them for subsequent sessions as you do with the classic framework HTTPSocket. They just apply to all sessions. At least that has been my experience using my own web services that use cookies.

Thanks for you reply. Actually I want to store and use the value of cookie in my code and not just apply the cookie in all sessions.