java OkHttp CookieJar无法向请求添加cookie

xfb7svmp  于 12个月前  发布在  Java
关注(0)|答案(2)|浏览(147)

我试图通过使用CookieJar将保存的身份验证cookie添加到进一步的请求中。虽然获得正确的身份验证cookie并将其保存到jar中工作得很好,但在检查response.request().headers()时,cookie无处可寻。
我发现这特别奇怪,因为我通过调试发现,loadForRequest()被调用的请求,并返回正确的cookie。当使用完全相同的cookie在Postman伪造请求,它返回所需的结果(一个页面没有登录表单)。
有人能解释一下我错过了什么吗?

使用jar的类

class HTMLRoutes {
    var scheme = "https"
    var host = "www.mangaupdates.com"
    val cookieJar = MULoginCookieJar()
    var client = OkHttpClient.Builder()
            .cookieJar(cookieJar)
            .build()
/*Other code*/

private fun getHTMLFromUrl(url: HttpUrl): String {
        var request = Request.Builder()
                .url(url)
                .build()
        client.newCall(request).execute().use { response ->
        //Right before returning response the loadForRequest() method gets called in the MUCookieJar class
            if (response.isSuccessful) {
            //response.request.headers = ""
                if (response.body() != null) {
                    return response.body()!!.string()
                } else {
                    throw IOException("Response body is empty")
                }
            } else {
                throw IOException("Unexpected code" + response)
            }
        }
    }
}

字符串

我的饼干罐

class MULoginCookieJar : CookieJar {
    private var secureSessionCookie: Cookie? = null

    override fun saveFromResponse(url: HttpUrl?, cookies: MutableList<Cookie>?) {
        if (url != null && cookies != null) {
            if (url.pathSegments().size > 0 && url.pathSegments()[0] == "login.html") {
                for (cookie in cookies) {
                    if(cookie.name() == "secure_session") {
                        secureSessionCookie = cookie
                    }
                }
            }
        }
    }

    override fun loadForRequest(url: HttpUrl?): List<Cookie>? { // url = https://www.mangaupdates.com/series.html?id=14829
        if(url != null && url.pathSegments().size > 0 && url.pathSegments()[0] == "login.html") {
            return emptyList()
        }

        val cookies: List<Cookie> = if(secureSessionCookie==null) emptyList() else listOf(secureSessionCookie!!)
        return cookies // = ["secure_session=601bbc74; expires=Sun, 07 Oct 2018 20:45:24 GMT; domain=www.mangaupdates.com; path=/; secure; httponly"]
    }
}


帮助是非常感谢。我一直是一个长期的潜伏者,但这是我第一次在一个问题上被难住。

ezykj2lf

ezykj2lf1#

我建议使用现有的cookie jar,而不是创建自己的。cookie的规则可能会有点复杂。

import okhttp3.JavaNetCookieJar;

CookieManager cookieManager = new CookieManager();
cookieManager.setCookiePolicy(CookiePolicy.ACCEPT_ALL);
JavaNetCookieJar cookieJar = new JavaNetCookieJar(cookieManager);

OkHttpClient client = new OkHttpClient.Builder().cookieJar(cookieJar).build();

字符串
为了帮助调试,你可以设置OkHttp debug logging with an interceptor

Logger logger = LoggerFactory.getLogger(HttpUtil.class);
HttpLoggingInterceptor logging =
    new HttpLoggingInterceptor((msg) -> {
        logger.debug(msg);
    });
logging.setLevel(Level.BODY);

client.addNetworkInterceptor(logging);

xghobddn

xghobddn2#

我经历了同样的“问题”,但事实证明,这不是因为饼干没有得到设置。它只是没有显示,因为在这一点上

OkHttpClient.Builder()
    .cookieJar(SessionCookieJar())
    .addNetworkInterceptor(
        HttpLoggingInterceptor().apply {
            setLevel(HttpLoggingInterceptor.Level.HEADERS)
        }
    )
    .build()

字符串
,无论拦截器一个使用,它必须被添加为“NetworkInterceptor”,以便让它看到由CookieJar加载的Cookie。也许它帮助某人。

相关问题