ssPaymentsError: 결제위젯을 초기화하지 않은 클라이언트 키입니다. 상점관리자에서 결제위젯 사용을 신청하세요.

.
[var paymentWidget = PaymentWidget(clientKey, customerKey); // ] <-- 는 const
const
[paymentWidget = PaymentWidget(clientKey, PaymentWidget.ANONYMOUS); // ] 가 var.

?

<script>
const clientKey = '<?php echo $clientKey?>';
const customerKey = '<?php echo $customerKey?>';
var paymentWidget = PaymentWidget(clientKey, customerKey); //
paymentWidget = PaymentWidget(clientKey, PaymentWidget.ANONYMOUS); //

paymentWidget.renderPaymentMethods('#payment-method', 15000);

function payment_run(){
paymentWidget.requestPayment({
orderId: 'AD8aZDpbzXs4EQa-UkIX6',
orderName: '외 2',
successUrl: 'http://localhost:8080/success',
failUrl: 'http://localhost:8080/fail',
customerEmail: 'customer123@gmail.com',
customerName: ''
});
}
</script>
Was this page helpful?