我正在尝试从 Springboot 向 Zillow API 发出获取请求,但出现以下错误:
错误:没有找到输入地址的完全匹配
508
这是我的代码
public String getZillow()
{
final String uri =
"https://www.zillow.com/webservice/GetSearchResults.htm&address=1756+Bluebird+Ct&citystatezip=Carrollton%2C+TX";
RestTemplate restTemplate = new RestTemplate();
String result = restTemplate.getForObject(uri, String.class);
System.out.println(result);
return result;
}
@RequestMapping(value = "/zillow", produces = MediaType.APPLICATION_XML_VALUE, method = RequestMethod.GET)
public String getAllEmployeesXML()
{
return getZillow();
}
我能够在浏览器上使用 uri 地址成功地看到 xml 对象,但在 Springboot 上却没有。