정기결제 카드 인증 성공/실패시 문의입니다.

async function requestBillingAuth() {
await payment.requestBillingAuth({
method: "CARD", // ()
successUrl: window.location.origin + "/success", // 는 URL
failUrl: window.location.origin + "/fail", // 는 URL
customerEmail: "<?= BIZMAIL ?>",
customerName: "<?= BIZCMPNAME ?>",
//windowTarget: "iframe",
});
}

된 successUrl 과 failUrl ,
, ?
Was this page helpful?