
공개/JavaScript
1. 결제 api - 토스(tosspayments) 가상계좌, 일반결제 등
jsp 쇼핑몰 과제를 하던 중 결제 api를 찾아보다가 두가지를 발견했다. 토스 결제 api https://docs.tosspayments.com/guides/overview 카카오페이 api 먼저 토스 결제에 대해 작성해보겠다. 신용/체크 카드 1. SDK를 준비한다. 2. 결제창 띄우기 tossPayments.requestPayment('카드', { // 결제 수단 파라미터 // 결제 정보 파라미터 amount: 15000, orderId: 'TxpT2fUjl8FrkJR1SKjNJ', orderName: '토스 티셔츠 외 2건', customerName: '박토스', successUrl: 'http://localhost:8080/success', failUrl: 'http://localhost:808..