Android Http 获取会话 Cookie [英] Android Http get Session Cookie

查看:22
本文介绍了Android Http 获取会话 Cookie的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我真的不想在这里发帖,因为网络上的信息太多了,但我已经摸索了很多深度,无法弄清楚.

I didn't really want to post here as there is so much information on the net, but I've trawled the depths and can't figure it out.

好的,所以我无法在两种情况下使用它,希望两者的答案都相同.

Ok so I can't get this to work in two scenario's hopefully the answer is the same for both.

我的问题是我设置了请求标头,但它似乎没有发送.

My problem is I set the request header but it doesn't seem to send it.

我有一个会话 ID s=e32ff223fwefd3 ,我想将它存储在 "Cookie" 下,但它似乎不起作用.

I have a session id s=e32ff223fwefd3 , and I want to store this under "Cookie" , but it doesn't seem to be working.

这是我拥有的最快的代码示例

Here is the quickest code example I have

import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.HttpResponse;

private static String sessionCookie = "s=12342342352354234";

public static void get(String url) {
    HttpClient client = new DefaultHttpClient();
    HttpGet request = new HttpGet(url);
        if(sessionCookie != null){
            Log.d(TAG, "Setting Cookie: "+sessionCookie);
            request.setHeader("Cookie", sessionCookie);
        } else {
            Log.i(TAG, "Null session request get()");
        }
        HttpResponse response = client.execute(request);

        Header[] headers = response.getAllHeaders();
        for (int i=0; i < headers.length; i++) {
            Header h = headers[i];
            Log.i(TAG, "Header names: "+h.getName());
            Log.i(TAG, "Header Value: "+h.getValue());
        }
}

所以当我的回复从另一边出来时,它没有附加我的 s=232342w3f23f id!

So when my response comes out the other side it doesn't have my s=232342w3f23f id attached to it!

我想我已经解释了这一点,感谢任何帮助

I think I've explained this right, any help is appreciated

推荐答案

好的,上面的代码确实有效,只是我没有正确检索标题以查看所有字段.问题是我的会话 ID 无效,但我使用的网络服务器具有最糟糕的错误处理机制 :-) 感谢收听!

Ok the code above actually does work, I just didn't retrieve the header correctly to see all the fields. The issue was I had an invalid session Id but the webserver I was using has the WORST error handling mechanisms :-) thanks for listening!

这篇关于Android Http 获取会话 Cookie的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆