通过WP8应用程序使用HTTPWebRequestion发送Cookie

时间:2014-01-22 08:01:52

标签: json cookies windows-phone-8 httpwebrequest

我必须为每个后续的HTTPWebRequest将cookie发送到服务器。我的代码如下。

class APIManager
{

CookieContainer cookieJar = new CookieContainer();
CookieCollection responseCookies = new CookieCollection();

private async Task<string> httpRequest(HttpWebRequest request)
{
    string received;

    using (var response = (HttpWebResponse)(await Task<WebResponse>.Factory
        .FromAsync(request.BeginGetResponse, request.EndGetResponse, null)))
    {
        using (var responseStream = response.GetResponseStream())
        {
            using (var sr = new StreamReader(responseStream))
            {
                cookieJar = request.CookieContainer;
                responseCookies = response.Cookies;
                received = await sr.ReadToEndAsync();
            }
        }
    }

    return received;
}

public async Task<string> Get(string path)
{
    var request = WebRequest.Create(new Uri(path)) as HttpWebRequest;
    request.CookieContainer = cookieJar;

    return await httpRequest(request);
}

public async Task<string> Post(string path, string postdata)
{
    var request = WebRequest.Create(new Uri(path)) as HttpWebRequest;
    request.Method = "POST";
    request.CookieContainer = cookieJar;

    byte[] data = Encoding.UTF8.GetBytes(postdata);
    using (var requestStream = await Task<Stream>.Factory.FromAsync(request.BeginGetRequestStream, request.EndGetRequestStream, null))
    {
        await requestStream.WriteAsync(data, 0, data.Length);
    }

    return await httpRequest(request);
}

}

每次我问这个问题的人都会说我必须通过以下代码行设置cookie容器。

  request.CookieContainer = cookieJar;

我使用它但仍然服务器返回'令牌不匹配'错误。我是否需要与供应商讨论它?

下图显示了我的问题和要求。

enter image description here

1 个答案:

答案 0 :(得分:0)

我没见过你用cookieJar做点什么!

//Create the cookie container and add a cookie.
request.CookieContainer = new CookieContainer();

// This example shows manually adding a cookie, but you would most
// likely read the cookies from isolated storage.
request.CookieContainer.Add(new Uri("http://api.search.live.net"),
new Cookie("id", "1234"));
APIManager中的

cookieJar是成员,每次实例APIManager时,cookieJar都是新实例。您需要确保cookieJar包含网站所需的内容。

您可以查看此How to: Get and Set Cookies