我设立一个新的服务器,并希望在这里使用的API。是做什么的呢?
网站服务器使用Spring启动开发,我使用的是这里的地图,地理编码和自动完成的API。
有春天开机无不同的方式。你可以简单地调用使用RestTemplate如下所示的API。希望这可以帮助!
package hello;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.client.RestTemplate;
@RestController
public class HelloController {
@RequestMapping("/")
public String index() {
//you can replace this with any Here API you need
final String uri = "https://autocomplete.geocoder.api.here.com/6.2/suggest.json"
+ "?app_id=xxxx"
+ "&app_code=xxxx"
+ "&beginHighlight=%3Cb%3E"
+ "&endHighlight=%3C/b%3E"
+ "&maxresults=20"
+ "&query=India&gen=9";
RestTemplate restTemplate = new RestTemplate();
String result = restTemplate.getForObject(uri, String.class);
return result;
}
}