gpt4 book ai didi

java - 在java中检索cookieContainer内的数据

转载 作者:行者123 更新时间:2023-11-30 07:19:16 25 4
gpt4 key购买 nike

我正在使用 Unity 引擎开发一个游戏,它必须将 cookie 从客户端 C# 发送到服务器端 - Java,并且我面临这个问题(也许是跨平台问题?我不确定)

我在客户端写了一堆这样的代码

private HttpWebRequest request(){
try{
string url = "http://localhost:8080/...";
var request = (HttpWebRequest)WebRequest.Create(url);
request.Timeout = 15000;
request.KeepAlive = true ;
request.Method= "GET";

CookieContainer cookieContainer = new CookieContainer();
Cookie Authentication = new Cookie("Session" , "09iubasd");
Authentication.Domain = url;
cookieContainer.Add(Authentication);
request.CookieContainer = cookieContainer;
request.Headers.Add("testting", "hascome");
return request;
}catch(System.Exception ex){
Debug.Log("[Exception]" + ex);
throw ex;
}

}

服务器端是用Java Spring编写的。我无法在服务器端检索 CookieContainer 内的 Cookie 数据。谁能给我任何建议或任何解决方案来解决这个问题?或者类似于Java中的CookieContainer的东西。我已经用谷歌搜索过,但似乎没有办法,如果这是一个愚蠢的问题,那么请教我。非常感谢。文斯

最佳答案

我刚刚找出原因,我的 cookie 域设置错误。

这是我刚刚修复的新测试代码。希望这对将来遇到同样问题的人有所帮助(当然,如果没有人面对这个愚蠢的问题,那就太好了)

private HttpWebRequest request(){
try{
System.Uri uri = new System.Uri("http://localhost:8080/...");
var request = (HttpWebRequest)WebRequest.Create(uri);
request.Timeout = 15000;
request.KeepAlive = true ;
request.Method= "GET";

Cookie Authentication = new Cookie("Session" , "09iubasd");
Authentication.Domain = uri.Host;
request.CookieContainer = new CookieContainer();
request.CookieContainer.Add(Authentication);
request.Headers.Add("testting", "hascome");
return request;
}catch(System.Exception ex){
Debug.Log("[Exception]" + ex);
throw ex;
}

}

关于java - 在java中检索cookieContainer内的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37856148/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com