我正在使用 jax-rs实现 Zillow GetDeepSearchResults Api ( https://www.zillow.com/howto/api/GetDeepSearchResults.htm ) 的客户端。但是我收到一个验证码验证请求作为响应
我能够让最终用户 localhost:8080/Myapp/ 正确验证验证码。但验证后,我被重定向到服务器根目录(localhost:8080)?
我得到了验证码响应作为字符串。
public String getLocation(String address) {
return client
.target(REST_URI)
.path(String.valueOf(address))
.request(MediaType.TEXT_XML)
.get(String.class);
}
然后我显示了验证码
<h:outputText value="#{mainBean.details}" escape="false"></h:outputText>
但验证后,我被重定向到服务器根目录(localhost:8080)?
验证后如何捕获 API 的响应。我需要获取返回的 XML。