이제는 Astronomy API를 연결해보자.여기서 앱 생성해주면 API Key를 주겠지. 나도 처음해봐서 잘 모른다.이렇게 생성.음 주는군 이제 이걸 사용하면 된다.만들었으니 .env에 KEY값을 환경변수로 저장해주고@Servicepublic class AstronomyApiService { private final String apiKey; private final String apiSecret; private final String baseUrl; private RestTemplate restTemplate = new RestTemplate(); public AstronomyApiService() { // Dotenv로 환경 변수 불러오기 Dote..