#upen_12231
1 messages · Page 1 of 1 (latest)
Could you please copy past that PaymentIntent here?
sure
there team used only "cards"
2 mins
pls
public ActionResult CreatePaymentIntent() { StripeConfiguration.ApiKey = _stripeApiKey; var options = new PaymentIntentCreateOptions { Amount = 1000, // Replace with the actual amount in cents Currency = "usd", PaymentMethodTypes = new List<string> { "card" }, }; var service = new PaymentIntentService(); var paymentIntent = service.Create(options); return Json(new { clientSecret = paymentIntent.ClientSecret }); }
Please share the PaymentIntent Id here (pi_1344), just copy past it
pi_3NixbtB0RWwYRD2b1Pq6lvTY
That payment method, requires a payment method, there was no attempt to pay it
What is the issue and the link with Apple Pay here ?
this transaction is done using apple pay: pi_3NixbtB0RWwYRD2b1Pq6lvTY but in dash board d it shows status incomplete, 'The customer has not entered their payment method'. I'm in test mode.
this transaction is done using apple pay: pi_3NixbtB0RWwYRD2b1Pq6lvTY
No there was no trace for Apple Pay
yes this is the problem
This code is just for creating a PaymentIntent
Not confirming it
you need to confirm it with Apple Pay if you want
but you need to implement additional steps
what framework are you using ?
can you please suggest
the task is: need to implement apple pay & google pay in web(asp.net)
If you want just Apple Pay and Google Pay, I invite you to integrate Stripe Express Checkout:
https://stripe.com/docs/elements/express-checkout-element/accept-a-payment
Choose .NET option in the guide and follow it Step by step