使用Cookie

使用Cookie

Posted by candy1126xx on May 10, 2017

设置Cookie策略

Retrofit默认是不使用Cookie的。但它提供了一个接口CookieJar。可以实现它以实现特定的Cookie策略。调用Retrofit.Builder.cookieJar()可使策略生效。保存读取Cookie的过程在BridgeInterceptor中。

JavaNetCookieJar

非持久化Cookie,即Cookie保存在内存中。

PersistentCookieJar

持久化Cookie,即Cookie以文件形式保存在磁盘上。