You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unable to use chinaunionpay for payment normally, ios prompts to change payment method
Expected behavior
If you can use pay 3.1.0 to achieve normal payment with chinaunionpay, the token will be returned, but the token cannot be converted.
final token = await Stripe.instance.createApplePayToken(paymentResult);===error
Smartphone / tablet
Device: IPhone15
OS: [e.g. iOS 18, Android 10]
Package version: [11.4]
Flutter version [3.245]
The text was updated successfully, but these errors were encountered:
final paymentMethod = await Stripe.instance.createPlatformPayPaymentMethod(
params: PlatformPayPaymentMethodParams.applePay(
applePayParams: ApplePayParams(
cartItems: [
ApplePayCartSummaryItem.immediate(
label: pobj.paystr,
amount: locamount,
),
],
merchantCountryCode: countryCode,
currencyCode: "HKD",
additionalEnabledNetworks: ["chinaUnionPay","JCB", "barcode",'visa', 'masterCard'],
// additionalEnabledNetworks: ['visa', 'masterCard', 'chinaUnionPay'],
merchantCapabilities: [
ApplePayMerchantCapability.supports3DS,
ApplePayMerchantCapability.supportsCredit,
ApplePayMerchantCapability.supportsDebit,
ApplePayMerchantCapability.supportsEMV
]
),
),
);
To Reproduce
Unable to use chinaunionpay for payment normally, ios prompts to change payment method
Expected behavior
If you can use pay 3.1.0 to achieve normal payment with chinaunionpay, the token will be returned, but the token cannot be converted.
final token = await Stripe.instance.createApplePayToken(paymentResult);===error
Smartphone / tablet
The text was updated successfully, but these errors were encountered: