I have difficulties using UnityWebRequest with Cookies. My webserver uses authentication and returns a Response Header “Set-Cookie” with a key-value pair. Unfortunately making more requests after the first authentication request, the Cookie is not stored by UnityWebRequest and therefore the requests are not permitted.
Sadly it is also forbidden to set a request Header myself with the Name “Cookie”.
Am I doing something wrong here? Or is this currently a known Limitation?
Hey I am having similar kind of problem but i fixed it with SetRequestHeader and GetRequestHeader(“Set-Cookie”) but the problem is it is not working in WebGl Version since browser doesn’t allow the Access of Set-Cookie Header is there any way i can get around this problem