改造2标题不起作用

时间:2017-02-09 16:30:15

标签: android retrofit2 okhttp3

我有登录API,在其响应中返回sessionId,我必须发送此sessionId用于在标头中获取sessionId的API,如果用户之前登录或未登录,则返回,但它总是在android中返回false值。但我使用postman -with拦截器启用它来测试它 - 它工作正常。

cookie出现在日志中

这就是我做的事情

public class CookieInterceptor implements Interceptor {
    private static volatile String cookie;

    public static void setSessionCookie(String cookies) {
        cookie = cookies;
    }

    @Override
    public okhttp3.Response intercept(Chain chain) throws IOException {
        Request request = chain.request();
        if (cookie != null) {
            request = request.newBuilder()
                    .addHeader("Cookie", cookie)
                    .build();
        }
        return chain.proceed(request);
    }
}

HttpLoggingInterceptor logging = new HttpLoggingInterceptor();
        logging.setLevel(HttpLoggingInterceptor.Level.BODY);

        final OkHttpClient okHttpClient = new OkHttpClient.Builder()
                .addNetworkInterceptor(logging)
                .addInterceptor(new CookieInterceptor())
                .readTimeout(120, TimeUnit.SECONDS)
                .connectTimeout(120, TimeUnit.SECONDS)
                .build();
        mRetrofit = new Retrofit.Builder()
                .baseUrl(Constants.BASE_URL)
                .client(okHttpClient)
                .addConverterFactory(GsonConverterFactory.create())
                .addCallAdapterFactory(RxErrorHandlingCallAdapterFactory.create())
                .build();

日志是: - 发送请求

--> GET https://giftdisk.com/my_en/mobileapi/customer/status http/1.1
 D/OkHttp: Cookie: frontend=d6652f83347c30f500cd444191b7cefb
 D/OkHttp: Host: giftdisk.com
 D/OkHttp: Connection: Keep-Alive
 D/OkHttp: Accept-Encoding: gzip
 D/OkHttp: User-Agent: okhttp/3.3.1
 D/OkHttp: --> END GET
  • 收到的请求

    <-- 200 OK https://giftdisk.com/my_en/mobileapi/customer/status (728ms)
     D/OkHttp: Date: Thu, 09 Feb 2017 16:08:45 GMT
     D/OkHttp: X-Powered-By: PHP/5.4.45
     D/OkHttp: Expires: Thu, 19 Nov 1981 08:52:00 GMT
     D/OkHttp: Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
     D/OkHttp: Pragma: no-cache
     D/OkHttp: Content-Encoding: gzip
     D/OkHttp: Vary: Accept-Encoding
     D/OkHttp: Set-Cookie: frontend=dadcf55472df1475a63a965e8363c914; expires=Thu, 09-Feb-2017 17:08:46 GMT; path=/; domain=giftdisk.com;
        02-10 06:13:32.859 31752-32731/ae.cws.giftdisk D/OkHttp: Set-Cookie: frontend_cid=j1JGqUiVmox6GjQ6; expires=Thu, 09-Feb-2017 17:08:46 GMT; path=/; domain=giftdisk.com; secure; httponly
     D/OkHttp: Keep-Alive: timeout=3, max=30
     D/OkHttp: Connection: Keep-Alive
     D/OkHttp: Transfer-Encoding: chunked
     D/OkHttp: Content-Type: text/html; charset=UTF-8
     D/OkHttp: <-- END HTTP (encoded body omitted)
    

2 个答案:

答案 0 :(得分:0)

听起来您可能希望通过CookieManager使用本机Cookie jar /策略支持。另见其他问题/答案:https://stackoverflow.com/a/24267060/25398

答案 1 :(得分:0)

日志的第二部分是服务器实际响应的内容,可能与您发送的内容完全无关(第一次登录)。

你在那里期待什么?