我正在使用AsyncRestTemplate
Springboot 1.5.2 服务对 Google Maps 进行 API 调用。不幸的是,我的一些搜索字符串包含井号/井号符号#
,并且在我的搜索参数中没有正确编码。我正在使用该exchange
方法。
下面的地址示例05406, VT, BURLINGTON, 309 College St #10
:
@Service
public class ExampleAsyncRestTemplate {
private AsyncRestTemplate asyncRestTemplate;
@Autowired
public ExampleAsyncRestTemplate() {
this.asyncRestTemplate = new AsyncRestTemplate();
}
public ListenableFuture<ResponseEntity<T>> getGeoCodedAddress() {
String googleUrl = "https://maps.googleapis.com/maps/api/geocode/json?address=05406, VT, BURLINGTON, 309 College St #10&key=some_key";
Map<String, String> uriVariables = new HashMap<>();
uriVariables.put("address", "05406, VT, BURLINGTON, 309 College St #10");
uriVariables.put("key", "some_key");
return asyncRestTemplate.exchange(googleUrl, HttpMethod.GET, new HttpEntity<>(), GoogleResponse.class, uriVariables);
}
}
生成的 URL 被编码为:
https://maps.googleapis.com/maps/api/geocode/json?address=05406,%20VT,%20BURLINGTON,%20309%20College%20St%20#10&key=some_key
请注意#
,当它应该%23
按照docs
.
深入调试器,似乎#
( 10&key=some_key
) 之后的字符串被视为fragment
URL 的。因此为什么#
永远不会被编码。
是否有人能够#
使用 AsyncRestTemplate 在您的查询参数中提交标志?
我唯一能想到的就是用 替换#
,number
它确实有效,但感觉很糟糕/次优。
谢谢你的帮助。