Moralis API 사용 시 예제 코드가 한국을 호령하는 자바는 어디가고 다른 언어로만 있는 것이 보이는데, 예시로 언어가 없다고 해서 사용하지 못하는 것이 아니기 때문에, 왼쪽의 GET, POST 이런 부분을 잘 확인해준 뒤
@GetMapping("/moralis-temp")
public void moralisTemp()
throws MessagingException, IOException {
HttpClient client = HttpClient.newHttpClient();
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create(
"https://deep-index.moralis.io/api/v2.2/erc20/0x9de16c805a3227b9b92e39a446f9d56cf59fe640/price?chain=0x2105&include=percent_change"))
.header("Content-Type", "application/json")
.header("X-API-Key", "INPUT YOUR API KEY")
.build();
try {
HttpResponse<String> response = client.send(request, BodyHandlers.ofString());
System.out.println("Response status code: " + response.statusCode());
System.out.println("Response body: " + response.body());
} catch (Exception e) {
System.out.println("Error during API request: " + e.getMessage());
}
}
이런 느낌으로 호출해서 사용해주면 되겠다
Leave a Reply