我试图利用MapBox api在我的后端,但我收到此错误。我从来没见过这个。我需要做些什么来配置端点吗?
错误——
java.lang.IllegalArgumentException: Invalid character found in method name [0x160x030x010x020x000x010x000x010xfc0x030x03mA0xe8&0x1f0xfa80xcd0x1b0x900xec!0xfd0xb30x04<0xcb0xa20x16@0x96H0x180x88[0xf90xeb0xbeK?^0xc8]. HTTP method names must be tokens
服务——
public String getTarget() {
TargetLocation location = targetLocationRepository.findTargetLocationById();
String lat = location.getLatitude();
String lng = location.getLongitude();
return "https://api.mapbox.com/geocoding/v5/mapbox.places/"+lat+","+lng+".json?access_token=${"+MAPBOX_ACCESS_TOKEN+"}";
}
控制器——
@GetMapping(value = "getTarget")
public String getTarget() {
return targetLocationService.getTarget();
}
似乎这可能与HTTPS有关。当您尝试在未启用HTTPS的端点上从客户机执行HTTPS请求时,就会发生这种情况。在您的客户端使用http:
(http://api.mapbox.com/geocoding/v5/mapbox.places
)代替。
该方法期望您使用HTTP而不是HTTPS。