We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm using flutter_stripe 11.1.0 and used PlatformPayButton
when i get clientSecret from my api and create paymentIntent it gives payment sheet but when i try to complete the pay it stuck there and failed
this was working when i last time tested 15 days ago
This was on live test though it works on test mode
I expected it to work and payment completed
for payment intent following code snippet is used final paymentIntentResult = await Stripe.instance.confirmPlatformPayPaymentIntent( clientSecret: response.clientSecret!, confirmParams: PlatformPayConfirmParams.applePay( applePay: ApplePayParams( merchantCountryCode: 'AU', currencyCode: 'AUD', cartItems: [ ApplePayCartSummaryItem.immediate( label: "Supero Pizza", amount: '${StorageManager().finalAmount}', ) ], ), ), );
Smartphone / tablet i'm testing on iphone 15
The text was updated successfully, but these errors were encountered:
I need more info then this to triage this issue. Did you speicfy the merchantidentifier and also what does the xcode logs say?
Sorry, something went wrong.
No branches or pull requests
I'm using flutter_stripe 11.1.0
and used PlatformPayButton
when i get clientSecret from my api and create paymentIntent
it gives payment sheet but when i try to complete the pay it stuck there and failed
this was working when i last time tested 15 days ago
This was on live test
though it works on test mode
I expected it to work and payment completed
for payment intent following code snippet is used
final paymentIntentResult =
await Stripe.instance.confirmPlatformPayPaymentIntent(
clientSecret: response.clientSecret!,
confirmParams: PlatformPayConfirmParams.applePay(
applePay: ApplePayParams(
merchantCountryCode: 'AU',
currencyCode: 'AUD',
cartItems: [
ApplePayCartSummaryItem.immediate(
label: "Supero Pizza",
amount: '${StorageManager().finalAmount}',
)
],
),
),
);
Smartphone / tablet
i'm testing on iphone 15
The text was updated successfully, but these errors were encountered: