| 接口 | 说明 |
|---|---|
| CookieStore |
| 类 | 说明 |
|---|---|
| MemoryCookieStore |
Created by zhy on 16/3/10.
|
| PersistentCookieStore |
OkHttpClient client = new OkHttpClient.Builder()
.cookieJar(new JavaNetCookieJar(new CookieManager(
new PersistentCookieStore(getApplicationContext()),
CookiePolicy.ACCEPT_ALL))
.build();
from http://stackoverflow.com/questions/25461792/persistent-cookie-store-using-okhttp-2-on-android
A persistent cookie store which implements the Apache HttpClient CookieStore interface. |
| SerializableHttpCookie |
from http://stackoverflow.com/questions/25461792/persistent-cookie-store-using-okhttp-2-on-android
and
http://www.geebr.com/post/okHttp3%E4%B9%8BCookies%E7%AE%A1%E7%90%86%E5%8F%8A%E6%8C%81%E4%B9%85%E5%8C%96 |