스프링1 스프링 카카오 oauth구현 동아리원들과 진행하는 프로젝트에서 카카오 oauth를 적용하기로 했다. Service.java 인가코드 ㅡ> 카카오 토큰 public String getToken(String code) throws IOException{ String host = "https://kauth.kakao.com/oauth/token"; URL url = new URL(host); HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection(); String token = ""; try { urlConnection.setRequestMethod("POST"); urlConnection.setDoOutput(true); // 데이터 기록 알려주기 Buffere.. 2023. 4. 10. 이전 1 다음