编程语言
首页 > 编程语言> > c# – WP 7.1上的Restsharp添加cookie

c# – WP 7.1上的Restsharp添加cookie

作者:互联网

我正在尝试使用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,windows-phone-7,restsharp
来源: https://codeday.me/bug/20190710/1419394.html