Does Roblox’s HttpService automatically support cookies? And if not, how would I go about implementing them myself?
My understanding of cookies is that when a browser makes a request to a server, that server can set some cookies in the Cookie header of the HTTP response. And then the client browser will send those cookies back in every subsequent request.
However, Roblox is not a browser, so I’m not sure if they’ll automatically handle cookies. Additionally, I see that on the wiki that you can add headers to the request (to send the cookies to the server):
But how would I get the headers from the response (to receive the cookies from the server)? Thanks!