#upen_12231

1 messages · Page 1 of 1 (latest)

subtle novaBOT
copper pond
#

Could you please copy past that PaymentIntent here?

dapper spire
#

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 });        }

copper pond
#

Please share the PaymentIntent Id here (pi_1344), just copy past it

dapper spire
#

pi_3NixbtB0RWwYRD2b1Pq6lvTY

copper pond
#

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 ?

dapper spire
#

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.

copper pond
#

this transaction is done using apple pay: pi_3NixbtB0RWwYRD2b1Pq6lvTY
No there was no trace for Apple Pay

dapper spire
#

yes this is the problem

copper pond
#

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 ?

dapper spire
#

can you please suggest

#

the task is: need to implement apple pay & google pay in web(asp.net)

copper pond
#

Choose .NET option in the guide and follow it Step by step

dapper spire
#

yes we want only google pay & apple pay in web

#

thank you so much