#daweiwang_
1 messages · Page 1 of 1 (latest)
Nope, you should be able to test all of the supported payment methods
curl https://api.stripe.com/v1/payment_intents
-u "sk_test_51MYLCwCY8MNlqc9TgHrjj9qQonORUv4modIGDbtjWWrPUhyCkqhkdzeVCmGpVClDPitwlqkO8GzLXyOMdhhQzgZQ00WBefApQg"
-d amount=1099
-d currency=usd
-d "payment_method_types[]"=card
What's the question?
That's because Apple Pay isn't a valid PM. It falls under the card value. See: https://stripe.com/docs/api/payment_intents/create#create_payment_intent-payment_method_types
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Which payment UI are your using to collect payment details?
Ok, and are you unable to render an Apple Pay button?
I want to integrate applepay googlepay paypal one stop
Sure, then you'd look at using the Express Checkout Element: https://stripe.com/docs/elements/express-checkout-element
That will render those wallets according to the supported options in the browser
What is 'drop-in checkout'?
The Payment Element allows your customers to complete payments via other non-card payment methods, or manually enter their card details if they don't use wallets
Me?