使用 Rest Assured 获取重定向的 url?

Get the url of a redirect with Rest Assured?

我正在发出 GET 请求,然后将 307 重定向到另一个 URL,然后从那里进行另一个 302 重定向,依此类推,直到到达请求的页面。我在从第一个重定向 307 中提取 URL 时遇到问题,我想查看重定向到的位置。我正在使用 Rest Assured 作为框架。谢谢!

我遇到了同样的问题,但我没有 307,只有 302。我想解决方案应该是一样的。我所做的是:

  1. 在第一次调用 redirects().follow(false)

  2. 时停止跟随重定向
  3. 从第一个重定向中捕获 URL

  4. 再次调用以遵循重定向

    Response resp1 =
            given().
                contentType(ContentType.URLENC).
                body("AUTH_TOKEN=&j_username=" + encodedUsername + "&j_password=" + password + "&userName=&AUTH_TOKEN=").
                redirects().follow(false).
            expect().
                statusCode(302).
            when().
                post("/authenticate/j_spring_security_check");
    
    String headerLocationValue = resp1.getHeader("Location");
    
    Response resp2 =
            given().
                cookie(resp1.getDetailedCookie("JSESSIONID")).
            expect().
                statusCode(200).
            when().
                get(headerLocationValue);