해외 결제 위젯 연동시
안녕하세요.
위젯 연결 작업 중에 있습니다.
상품은 USD 로 등록이 되어있있어서
결제창도 연동 하려는데 USD 통화를 확인하려면
useInternationalCardOnly 값을 true 로 해야한다고 봐서 다음과 같이 추가 하고 진행했습니다.
method: "CARD", // 카드 및 간편결제
amount: {
currency: "USD",
value: 200,
},
orderId: Date.now(), /
orderName: '테스트상품',
successUrl: window.location.origin + "/api/booking/payment_success", // 결제 요청이 성공하면 리다이렉트되는 URL
failUrl: window.location.origin + "/api/booking/payment_fail", // 결제 요청이 실패하면 리다이렉트되는 URL
customerEmail: customerEmail,
customerName: customerName,
card: {
useInternationalCardOnly: true
}
결제 버튼을 클릭했더니 이미지와 같은 에러가 나네요.
위젯 연결 작업 중에 있습니다.
상품은 USD 로 등록이 되어있있어서
결제창도 연동 하려는데 USD 통화를 확인하려면
useInternationalCardOnly 값을 true 로 해야한다고 봐서 다음과 같이 추가 하고 진행했습니다.
method: "CARD", // 카드 및 간편결제
amount: {
currency: "USD",
value: 200,
},
orderId: Date.now(), /
orderName: '테스트상품',
successUrl: window.location.origin + "/api/booking/payment_success", // 결제 요청이 성공하면 리다이렉트되는 URL
failUrl: window.location.origin + "/api/booking/payment_fail", // 결제 요청이 실패하면 리다이렉트되는 URL
customerEmail: customerEmail,
customerName: customerName,
card: {
useInternationalCardOnly: true
}
결제 버튼을 클릭했더니 이미지와 같은 에러가 나네요.

