Android webview 설정 쿠키 와 쿠키 분실 문제 해결

6637 단어 Androidwebviewcookie
안 드 로 이 드 페이지 는 h5,H5 페이지 내부 에 사용자 로그 인 페이지 가 있 는데 h5 페이지 의 로그 인 기능 을 사용 할 수 없어 계속 로그 인 에 실 패 했 습 니 다.웹 쪽 과 상의 해 보 니 js 가 기록 한 쿠키 를 잃 어 버 렸 습 니 다.모든 것 은 안 드 로 이 드 쪽 에서 다시 써 야 합 니 다.

    mWebView = view.findViewById(R.id.mall_view);
    settings = mWebView.getSettings();
    settings.setJavaScriptEnabled(true);
    settings.setLoadsImagesAutomatically(true);
    settings.setDomStorageEnabled(true);
    //   
    settings.setCacheMode(WebSettings.LOAD_NO_CACHE);
    mWebView.setWebViewClient(new MyWebViewClient());

  class MyWebViewClient extends WebViewClient{
    @Override
    public boolean shouldOverrideUrlLoading(WebView view, String url) {
      if (url != "") {
        //    cookie
        HashMap<String, String> map = new HashMap<>();
        map.put("Referer", view.getUrl());
        view.loadUrl(url, map);
      }
      return true;
    }

    @Override
    public void onPageFinished(WebView view, String url) {
      //      cookie,     
      CookieManager cookieManager = CookieManager.getInstance();
      String CookieStr = cookieManager.getCookie(url);
      super.onPageFinished(view, url);
    }
  }

이상 로그 인 실패 문 제 를 해결 하 였 습 니 다!
그리고 로그 인 상태의 동기 화 는 쿠키 를 저장 하고 설정 해 야 합 니 다.

  /**
   *       cookie
   * @param loginUrl
   */
  private void syncCookie(final String loginUrl) {

    new Thread(new Runnable() {


      @Override
      public void run() {
        try {
          StringBuilder builder = new StringBuilder();
          URL url= null;
          byte[] data = builder.toString().getBytes("UTF-8");
          url = new URL(loginUrl);
          HttpURLConnection connection =
              (HttpURLConnection) url.openConnection();

          connection.setDoOutput(true);
          connection.setRequestProperty("Content-Type",
              "application/x-www-form-urlencoded");
          connection.setRequestProperty("Content-Length",
              Integer.toString(data.length));
          connection.setRequestMethod("GET");
          connection.setInstanceFollowRedirects(false);
          OutputStream os = connection.getOutputStream();
          os.write(data);
          os.close();
          int aRstCode = connection.getResponseCode();
          if (aRstCode == HttpURLConnection.HTTP_OK) {
            cookie = connection.getHeaderField("Set-Cookie");
          }

        } catch (MalformedURLException e) {
          e.printStackTrace();
        } catch (UnsupportedEncodingException e) {
          e.printStackTrace();
        } catch (ProtocolException e) {
          e.printStackTrace();
        } catch (IOException e) {
          e.printStackTrace();
        }
      }
    }).start();
  }
    //  cookie
    if(cookie != null && cookie.length() > 0){
      android.webkit.CookieManager cookieManager =
          android.webkit.CookieManager.getInstance();
      cookieManager.setAcceptCookie(true);
      cookieManager.setCookie(SysParam.shoppingMall, cookie);
      CookieSyncManager.getInstance().sync();
    }
추가 지식:android webview 쿠키 접근 url
문제 설명
원생 과 h5 를 혼합 개발 할 때 이런 문제 가 발생 할 수 있 습 니 다.webview 로 특정한 url 을 불 러 올 때 앱 으로 계 정 을 로그 인 했 을 뿐 웹 페이지 는 없습니다.모든 것 이 이 url 에 접근 하지 못 하 게 되 고 webview 는 흰색 화면 을 표시 합 니 다.
따라서 이 url 을 방문 하려 면 쿠키 를 가지 고 방문 해 야 합 니 다.이 쿠키 는 app 으로 로그 인 할 때 저 장 된 쿠키 입 니 다.
실현 방법 과 일부 환경
네트워크 요청 방식
HttpsUrlConnection
HttpsUrlConnection 을 사 용 했 으 니 제 가 불 러 온 url 은 https 프로 토 콜 입 니 다.
그래서 웹 뷰 를 불 러 올 때 하 얗 게 나 와 요.
오류 메시지:
1
이것 은 인증서 와 도 메 인 이름 이 일치 하지 않 기 때문에 내 디 버 깅 환경 은 네트워크 서버 에 있 고 인증 서 는 네트워크 의 도 메 인 이름 에 연결 되 어 있 습 니 다.
그래서 웹 뷰 가 인증서 인증 을 건 너 뛰 어야 합 니 다.
인증서 인증 건 너 뛰 기

 webView.setWebViewClient(new WebViewClient() {
      @Override
      public void onReceivedSslError(WebView view, SslErrorHandler handler, SslError error) {
        Log.e("app_name",error.toString());
        handler.proceed();
      }
    });
쿠키 설정
쿠키 는 앱 이 HttpsUrlConnect 를 사용 하여 로그 인 요청 을 할 때 로 컬 에 저장 하 는 쿠키 입 니 다.
app 로그 인 성공 후 로 컬 에 쿠키 저장

SharedPreferences sharedPreferences = getSharedPreferences("login",MODE_PRIVATE);
SharedPreferences.Editor editor = sharedPreferences.edit();
String cookieval = conn.getHeaderField("Set-Cookie");
editor.putString("all_cookie",cookieval);
다음 과 같은 구조 값 입 니 다.
SESSION=f19b09e9-69b2-4ab4-9daf-ea224523a092; Path=/; Secure; HttpOnly
기록 쿠키

/**
*@param cookie             cookie   
*@param url       url
*/
 private void setCookie(String cookie,String url) {
    String StringCookie = cookie;
    CookieManager cookieManager = CookieManager.getInstance();
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
      cookieManager.removeSessionCookies(null);
      cookieManager.flush();
    } else {
      cookieManager.removeSessionCookie();
      CookieSyncManager.getInstance().sync();
    }
    cookieManager.setAcceptCookie(true);
    cookieManager.setCookie(url, StringCookie);
  }
모든 키 코드

 SharedPreferences sharedPreferences = getSharedPreferences("login",MODE_PRIVATE);
 String cookie = sharedPreferences.getString("session","");
 String all_cookie = sharedPreferences.getString("all_cookie","");
 Log.e("weibiao",all_cookie);
 webView = findViewById(R.id.other_account_service_webview);
 webView.setWebViewClient(new WebViewClient() {
   @Override
   public void onReceivedSslError(WebView view, SslErrorHandler handler, SslError error) {
     Log.e("weibiao",error.toString());
     handler.proceed();
   }
 });
 initWebViewSettings();//webview     
 setCookie(all_cookie,url);// loadurl       
 webView.loadUrl(url);
안 드 로 이 드 웹 뷰 가 쿠키 와 쿠키 를 설정 하여 잃 어 버 린 문 제 를 해결 하 는 이 편 은 바로 편집장 이 여러분 에 게 공유 한 모든 내용 입 니 다.참고 하 시기 바 랍 니 다.여러분 들 도 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기