0
하나의 결제 수단 (AliPay) 만 필요합니다. 하지만 Stripe Checkout (신용 카드)로 기본 결제 수단을 사용 중지 할 수는 없습니다. 물론, 나는 documentation을 읽었지 만, 나는 그것을 어떻게 만들 수 있는지 전혀 모른다.스트라이프 체크 아웃에서 기본 결제 수단 (신용 카드)을 사용 중지하는 방법
이것은 내 코드입니다.
var handler = StripeCheckout.configure({
key: 'public_key',
alipay: true,
locale: false,
currency: "usd",
token: function(token) {
// Use the token to create the charge with a server-side script.
// You can access the token ID with `token.id`
}
});
handler.open({
name: 'example.com',
description: 'AliPay Payment',
amount: 10000
});
고마워요!