web-dev-qa-db-ja.com

Androidセッション管理

Androidセッション管理用の特定のライブラリーはありますか?セッションを通常のAndroidアプリではなくWebViewで管理する必要があります。私はpostメソッドからセッションを設定できますが、別のリクエストを送信すると、そのセッションは失われます。この問題について誰かが手伝ってくれませんか?

DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("My url");

HttpResponse response = httpClient.execute(httppost);
List<Cookie> cookies = httpClient.getCookieStore().getCookies();

if (cookies.isEmpty()) {
    System.out.println("None");
} else {
    for (int i = 0; i < cookies.size(); i++) {
        System.out.println("- " + cookies.get(i).toString());
    }
}

同じホストにアクセスしようとすると、そのセッションは失われます。

HttpGet httpGet = new HttpGet("my url 2");
HttpResponse response = httpClient.execute(httpGet);

ログインページのレスポンスボディを取得します。

24
nala4ever

これはAndroidとは関係ありません。これは、HTTPアクセスに使用しているライブラリであるApache HttpClientと関係があります。

セッションCookieはDefaultHttpClientオブジェクトに保存されます。リクエストごとに新しいDefaultHttpClientを作成する代わりに、リクエストを保持して再利用すると、セッションCookieが維持されます。

Apache HttpClient here について、およびHttpClient here でのCookie管理について読むことができます。

39
CommonsWare

これは私が投稿に使用するものです。このメソッドでnew httpClientsを使用できます。ここで、phpsessidは、上記のコードを使用してログインスクリプトから抽出されたPHPセッションIDです。

ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();

nameValuePairs.add(new BasicNameValuePair("PHPSESSID",phpsessid));
4
Jim

一般に、Java HttpURLConnectionでは、この方法でCookieを設定/取得できます(接続プロセス全体です)。以下のコードは、ConnectingThreadのrun()にあり、そこからすべての接続アクティビティクラスが継承。すべてのリクエストで送信される共通の静的sCookie文字列を共有します。したがって、ログオン/ログオフのような共通の状態を維持できます。

        HttpURLConnection conn = (HttpURLConnection) url.openConnection();             

        //set cookie. sCookie is my static cookie string
        if(sCookie!=null && sCookie.length()>0){
            conn.setRequestProperty("Cookie", sCookie);                  
        }

        // Send data
        OutputStream os = conn.getOutputStream(); 
        os.write(mData.getBytes());
        os.flush();
        os.close(); 

        // Get the response!
        int httpResponseCode = conn.getResponseCode();         
        if (httpResponseCode != HttpURLConnection.HTTP_OK){
           throw new Exception("HTTP response code: "+httpResponseCode); 
        }

        // Get the data and pass them to the XML parser
        InputStream inputStream = conn.getInputStream();                
        Xml.parse(inputStream, Xml.Encoding.UTF_8, mSaxHandler);                
        inputStream.close();

        //Get the cookie
        String cookie = conn.getHeaderField("set-cookie");
        if(cookie!=null && cookie.length()>0){
            sCookie = cookie;              
        }

        /*   many cookies handling:                  
        String responseHeaderName = null;
        for (int i=1; (responseHeaderName = conn.getHeaderFieldKey(i))!=null; i++) {
            if (responseHeaderName.equals("Set-Cookie")) {                  
            String cookie = conn.getHeaderField(i);   
            }
        }*/                

        conn.disconnect();                
3
Yar

Android apps。)でセッションをアクティブに維持する完全に透過的な方法(ユーザーがログインしたか、その他すべて)。これは、シングルトン内のApache DefaultHttpClientとHttpRequest/Responseインターセプターを使用します。

SessionKeeperクラスは、ヘッダーの1つがSet-Cookieであるかどうかを単純にチェックし、そうである場合は単にそれを記憶します。 SessionAdderは、リクエストにセッションIDを追加するだけです(nullでない場合)。この方法では、認証プロセス全体が完全に透過的です。

public class HTTPClients {

    private static DefaultHttpClient _defaultClient;
    private static String session_id;
    private static HTTPClients _me;
    private HTTPClients() {

    }
    public static DefaultHttpClient getDefaultHttpClient(){
        if ( _defaultClient == null ) {
            _defaultClient = new DefaultHttpClient();
            _me = new HTTPClients();
            _defaultClient.addResponseInterceptor(_me.new SessionKeeper());
            _defaultClient.addRequestInterceptor(_me.new SessionAdder());
        }
        return _defaultClient;
    }

    private class SessionAdder implements HttpRequestInterceptor {

        @Override
        public void process(HttpRequest request, HttpContext context)
                throws HttpException, IOException {
            if ( session_id != null ) {
                request.setHeader("Cookie", session_id);
            }
        }

    }

    private class SessionKeeper implements HttpResponseInterceptor {

        @Override
        public void process(HttpResponse response, HttpContext context)
                throws HttpException, IOException {
            Header[] headers = response.getHeaders("Set-Cookie");
            if ( headers != null && headers.length == 1 ){
                session_id = headers[0].getValue();
            }
        }

    }
}
0
user344293