gpt4 book ai didi

c# - WP 7.1 上的 Restsharp 添加 cookie

转载 作者:行者123 更新时间:2023-11-30 12:51:42 25 4
gpt4 key购买 nike

我正在尝试使用 RestSharp 将 cookie 添加到请求中,但在 fiddler2 中我没有在请求中看到 cookie,并且服务调用失败。向 RestRequest 添加 cookie 有什么技巧吗?

 RestRequest rq = new RestRequest(LTV.NowNext(), Method.GET);
rc.AddDefaultParameter(LTV.cookie.Key, LTV.cookie.Value, ParameterType.Cookie);

rc.ExecuteAsync<LTV.nowNext>(rq, (response2) =>
{
if (response2.Data == null)
return;
foreach (LTV.channel channel in response2.Data.channels)
this.Items.Add(new ItemViewModel() { LineOne = channel.name, LineTwo = channel.showing[0].content[0].parent.title, LineThree = channel.showing[1].content[0].parent.title });
});

谢谢,艾尔

最佳答案

在向 RestRequest 添加 cookie 时,RestSharp 在 Windows Phone 上存在错误!

我解决了这个问题并得到一个 pull request等待他们集成到主分支。

现在,您可以通过使用 AddHeader("Cookie", cookieValuesString)... 来解决这个问题

关于c# - WP 7.1 上的 Restsharp 添加 cookie,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6330212/

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