#Rahul Maru
1 messages · Page 1 of 1 (latest)
Should be yes. You can simply create a Checkout Session or PaymentLink to test
but i am not able to find apple pay option in my dashboard
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
what is the procedure for setup apple pay and google pay for stripe
hello @jade prism are you there
Yes, finding this Doc for you: https://stripe.com/docs/payments/accept-a-payment?platform=web&ui=checkout#testing-apple-pay-google-pay
i need to do the complete server side implementation for apple pay and google pay but there are some parameters for
success_url: 'http://localhost:4242/success.html',
cancel_url: 'http://localhost:4242/cancel.html'
while create an apple pay session but in mobile app we can't redirect user so how we can process the payment for apple pay
What do you mean by server side implementation for apple pay and google pay?
Do you mean Checkout Session?
actually we have the ecomm project where from mobile app customer call an api and payment will be captured on server just like we do card payments
but in the case of apple pay i need the same like if user calls apple pay api while placing an order payment will be capture on backend and it will response to the app
yes
Can you elaborate more on your current implementation? How are you:
from mobile app customer call an api and payment will be captured on server
what "apple pay api" you are referring to?
leave that just let me know
after creating stripe.paymentIntents.create
then payment will be captured thorugh ios side for apple pay according to this link right
link: https://stripe.com/docs/payments/accept-a-payment?platform=ios&ui=custom
or after that we need to do something else for capture the payment
"Capture" is confusing since it means a complete different thing: Separate Auth and Capture. It's not the Doc above.
Also the Doc above is using a legacy component that I don't recommend. I recommend PaymentSheet instead: https://stripe.com/docs/payments/accept-a-payment?platform=ios&ui=payment-sheet
but on 5th step in payment sheet they have mentioned that we need to setup return url and in IOS we can't redirect user
That part is only needed if you use some redirect-based payment method. If you only use card and Apple Pay, you can skip it