Android session management

后端 未结 4 1196
挽巷
挽巷 2020-12-01 00:51

Is there a specific library for Android session management? I need to manage my sessions in a normal Android app. not in WebView. I can set the session from my

4条回答
  •  自闭症患者
    2020-12-01 01:22

    This is what I use for posts. I can use new httpClients with this method where phpsessid is the PHP session id extracted from the login script using the code you have above.

    ArrayList nameValuePairs = new ArrayList();
    
    nameValuePairs.add(new BasicNameValuePair("PHPSESSID",phpsessid));
    

提交回复
热议问题