망수기결제(키인결제) 시 구매자명, 구매자이메일, 구매휴대폰 정보 삽입데이터 문의
URL url = new URL("https://api.tosspayments.com/v1/payments/key-in"); HttpURLConnection connection = (HttpURLConnection) url.openConnection(); connection.setRequestProperty("Authorization", authorizations); connection.setRequestProperty("Content-Type", "application/json"); connection.setRequestMethod("POST"); connection.setDoOutput(true); JSONObject obj = new JSONObject(); obj.put("orderId", orderId); obj.put("amount", amount); obj.put("cardNumber", cardNumber); obj.put("cardExpirationYear", cardExpirationYear); obj.put("cardExpirationMonth", cardExpirationMonth); obj.put("orderName", orderName); obj.put("customerIdentityNumber", customerIdentityNumber);요 형태로 넣고 있는데 구매자명이 들어가지 않습니다. 상점 mid는 kvp_jworiakqey 입니다 
Toss payments 개발자 커뮤니티입니다. 결제 연동하며 겪는 기술 문의부터, 결제 시장에 대한 다양한 정보까지 얻어가세요~15,588Members
Resources