Retrofit--记使用Retrofit时遇到的一个坑

Posted Hankkin_Coding

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Retrofit--记使用Retrofit时遇到的一个坑相关的知识,希望对你有一定的参考价值。

绪论

很久没有写博客了,上次是写了使用Retrofit时怎么设置OKHttp,如果你没看到请看:
Retrofit–使用Retrofit时怎样去设置OKHttp
你也可以看看我是怎样使用Retrofit的:
Retrofit–合理封装回调能让你的项目高逼格
好了,今天说一下我遇到的一个坑吧。

Retrofit Cookie问题

上次我们说过怎么去实现持久化登录,本地保存用户的cookie:
1.

2.
本地新建PersistentCookieStore文件保存SP中
3.添加依赖

compile 'com.squareup.retrofit2:retrofit:2.0.1'
    compile 'com.squareup.okhttp3:okhttp:3.2.0'
    compile 'com.squareup.okio:okio:1.6.0'
    compile 'com.google.code.gson:gson:2.6.2'
    compile 'com.squareup.retrofit2:converter-gson:2.0.1'
    compile 'com.squareup.okhttp3:logging-interceptor:3.2.0'
    compile 'com.squareup.okhttp3:okhttp-urlconnection:3.0.0-RC1'

之前可能没说明添加哪些依赖,导致小伙伴们都问我出现了问题,这次说明一下。

我在做项目的时候遇到的问题就是:
测试环境下:我这样保存cookie是没有问题的,而且几个小伙伴也用了这个方法到项目中也OK,但是当我们的服务器由测试切到了正式环境下之后,cookie是可以获取到的,但是服务器却怎么都不识别,这着实让我很郁闷,我不得不猜想这是后台服务器的问题,但是后台大哥一直坚持他那里面没有问题,没办法,我最后又google了一下,这种方法可以用,先说一下:

同样给HttpClient添加拦截器:

看一下ReceivedCookiesInterceptor和AddCookiesInterceptor这两个文件:

package com.hankkin.bpm.http.cookie;

import android.content.Context;
import android.content.SharedPreferences;

import java.io.IOException;

import okhttp3.Interceptor;
import okhttp3.Response;
import rx.Observable;
import rx.functions.Action1;
import rx.functions.Func1;

public class ReceivedCookiesInterceptor implements Interceptor 
    private Context context;

    public ReceivedCookiesInterceptor(Context context) 
        super();
        this.context = context;

    

    @Override
    public Response intercept(Chain chain) throws IOException 

        Response originalResponse = chain.proceed(chain.request());
        if (!originalResponse.headers("Set-Cookie").isEmpty()) 
            final StringBuffer cookieBuffer = new StringBuffer();
            Observable.from(originalResponse.headers("Set-Cookie"))
                    .map(new Func1<String, String>() 
                        @Override
                        public String call(String s) 
                            String[] cookieArray = s.split(";");
                            return cookieArray[0];
                        
                    )
                    .subscribe(new Action1<String>() 
                        @Override
                        public void call(String cookie) 
                            cookieBuffer.append(cookie).append(";");
                        
                    );
            SharedPreferences sharedPreferences = context.getSharedPreferences("cookie", Context.MODE_PRIVATE);
            SharedPreferences.Editor editor = sharedPreferences.edit();
            editor.putString("cookie", cookieBuffer.toString());
            editor.commit();
        

        return originalResponse;
    
package com.hankkin.bpm.http.cookie;

import android.content.Context;
import android.content.SharedPreferences;

import java.io.IOException;

import okhttp3.Interceptor;
import okhttp3.Request;
import okhttp3.Response;
import rx.Observable;
import rx.functions.Action1;

public class AddCookiesInterceptor implements Interceptor 
    private Context context;
    private String lang;

    public AddCookiesInterceptor(Context context,String lang) 
        super();
        this.context = context;
        this.lang = lang;

    

    @Override
    public Response intercept(Chain chain) throws IOException 

        final Request.Builder builder = chain.request().newBuilder();
        SharedPreferences sharedPreferences = context.getSharedPreferences("cookie", Context.MODE_PRIVATE);
Observable.just(sharedPreferences.getString("cookie", ""))
                .subscribe(new Action1<String>() 
                    @Override
                    public void call(String cookie) 
                        if (cookie.contains("lang=ch"))
                            cookie = cookie.replace("lang=ch","lang="+lang);
                        
                        if (cookie.contains("lang=en"))
                            cookie = cookie.replace("lang=en","lang="+lang);
                        
                        //添加cookie
                        builder.addHeader("Cookie", cookie);
                    
                );
        return chain.proceed(builder.build());
    
package com.hankkin.bpm.http.cookie;

import android.content.Context;
import android.content.SharedPreferences;

import java.io.IOException;

import okhttp3.Interceptor;
import okhttp3.Request;
import okhttp3.Response;
import rx.Observable;
import rx.functions.Action1;

public class AddCookiesInterceptor implements Interceptor 
    private Context context;
    private String lang;

    public AddCookiesInterceptor(Context context,String lang) 
        super();
        this.context = context;
        this.lang = lang;

    

    @Override
    public Response intercept(Chain chain) throws IOException 

        final Request.Builder builder = chain.request().newBuilder();
        SharedPreferences sharedPreferences = context.getSharedPreferences("cookie", Context.MODE_PRIVATE);

        Observable.just(sharedPreferences.getString("cookie", ""))
                .subscribe(new Action1<String>() 
                    @Override
                    public void call(String cookie) 
                        if (cookie.contains("lang=ch"))
                            cookie = cookie.replace("lang=ch","lang="+lang);
                        
                        if (cookie.contains("lang=en"))
                            cookie = cookie.replace("lang=en","lang="+lang);
                        
                        //添加cookie
                        builder.addHeader("Cookie", cookie);
                    
                );
        return chain.proceed(builder.build());
    

大家可以忽略lang的东西,那些是多元化传给服务器的。
我最后的猜测也就是:服务器的正式和测试环境下他在设置cookie值的时候并没有在cookie里面设置完整,所以导致我从cookie里面取的值不正确或者不是最新的,当然这也只是我的猜测,很可能还和环境问题有关系。
总之我们又有了一种持久化管理cookie的方法,记录下来方便以后使用。
参考文章:
Retrofit使用OkHttp保存和添加cookie

以上是关于Retrofit--记使用Retrofit时遇到的一个坑的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 Retrofit2 处理嵌套 JsonObjects 的动态字段

RxJava整合Retrofit遇到的问题总结

Android 使用retrofit时,怎样获取响应的头信息

如何使用 Square 的 Retrofit 网络库实现异步回调

在 Retrofit2 上使用 HTTPs 的 SSLProtocolException

Okhttp + Retrofit @Body 请求 - 传输编码:添加了分块