자체 UI 방식으로 네이버페이/카카오페이 결제 호출 방법 문의

.

체 UI .
이 requestPayment:
await payment.requestPayment({
    method: "VIRTUAL_ACCOUNT", // 가상계좌
    amount: { currency: "KRW", value: 10000 },
    orderId: "qqBMGnddTULGsamxpaIJV",
    orderName: "토스 티셔츠 외 2건",
    successUrl: window.location.origin + "/shop/success",
    failUrl: window.location.origin + "/shop/fail",
    customerEmail: "customer123@gmail.com",
    customerName: "김토스",
    customerMobilePhone: "01012341234"
});

,
이 method.
await payment.requestPayment({
    method: "KAKAOPAY", // 카드 및 간편결제
    amount: { currency: "KRW", value: 10000 },
    orderId: "qqBMGnddTULGsamxpaIJV",
    orderName: "토스 티셔츠 외 2건",
    successUrl: window.location.origin + "/shop/success",
    failUrl: window.location.origin + "/shop/fail",
    customerEmail: "customer123@gmail.com",
    customerName: "김토스",
    customerMobilePhone: "01012341234"
});

,

method 만 KAKAOPAY 는 NAVERPAY,

나 API
.

.
Was this page helpful?