박결재승인관련 문의 드립니다.
최종 Confirm 관련 아래 코드로 가이드를 받았습니다. URL url = new URL("https://api.tosspayments.com/v1/payments/confirm"); HttpURLConnection connection = (HttpURLConnection) url.openConnection() ; connection.setRequestProperty("Authorization", authorizations); connection.setRequestProperty("Content-Type", "application/json"); connection.setRequestMethod("POST"); connection.setDoOutput(true); OutputStream outputStream = connection.getOutputStream(); outputStream.write(obj.toString().getBytes("UTF-8")); int code = connection.getResponseCode(); boolean isSuccess = code == 200; logger.info("responseStream Test: "); InputStream responseStream = isSuccess ? connection.getInputStream() : connection.getErrorStream(); logger.info("responseStream : "+responseStream);이때 최종 결재 정보 card,cash 등 의 정보를 어떻게 확인하나요? 
Toss payments 개발자 커뮤니티입니다. 결제 연동하며 겪는 기술 문의부터, 결제 시장에 대한 다양한 정보까지 얻어가세요~15,588Members
Resources