#giorgibochorishvili
1 messages ยท Page 1 of 1 (latest)
To double check, are you using the Payment Element on your page?
Just gimme a sec, I'll ask our front-end dev
If so confirmPayment should be the right call to use and I can look deeper. If you aren't using the PE I think you need to use the AliPay specific confirm call
Hi ๐
I'm stepping in to offer my assistance since the server is busy.
Can you provide just the Payment Intent ID ( it'll start with pi_xxx ) so I can take a look?
pi_3OHSDDEQhzwkdhyH1NVBf4cT
Thanks, taking a look
While I investigate it is worth pointing out that our docs state AliPay is a single use payment method so saving for future usage likely requires additional configuration (if it's supportedt at all) https://stripe.com/docs/payments/alipay
just to clarify, since this is a "single-use" payment, does it mean our customer won't be charged automatically for subscription updates (like monthly auto-charging)?
And what adjustments do we need to make to start accepting these payments?
Currently AliPay is not available for subscriptions
https://stripe.com/docs/payments/wallets#product-support
Hi
I'm frontend developer. Just in case I'll provide our options for <Elements /> as well as <PaymentElement />
Elements options:
export const getStripeElementOptions = ({ promoCode, discountedPrice, amount, }: IGetStripeElementOptions): StripeElementsOptions => { return { mode: 'subscription', amount: promoCode && discountedPrice ? discountedPrice : amount, currency: 'usd', appearance: { theme: 'flat', rules: FORM_STYLES, }, }; };
PaymentElement options:
const STRIPE_PAYMENT_ELEMENT_OPTIONS: StripePaymentElementOptions = { fields: { billingDetails: 'auto' }, layout: { type: 'tabs' }, wallets: { applePay: 'auto', googlePay: 'auto', }, };
For this I recommend writing into support to request this feature. https://support.stripe.com/contact
The issue is that currently we do not support the Alipay payment method for use with subscriptions . This isn't something either your front-end code or back-end code can address directly
So, should we disable AliPay payments entirely for subscriptions? Or is there a way to accept these payments specifically as "one-time" payments for subscriptions?
I would recommend disabling for now and working with Support to see if we can enable them. I can't think of a way to reliably enable AliPay for Subscriptions.
Ok, thanks!
Happy to shed what ๐ก I can ๐