how to use Apple Pay without backend server or stripe.

Hello, I have referred apple's document and other sites to get familiar with Apple Pay with the iOS app. (using swift)

they all say how to implement Apple Pay with stripe.

so, my question is, is it possible to make full transaction success without backend server/stripe?

Thank you.

  • To my knowledge, Apple Pay is not a payment processing service system. It's a mediator or a digital wallet that stores privacy data and allows the user to make a payment through a third-party processing system. So the answer to your question is no, I suppose.

  • Hi Toamto, thanks for the answer. how can I integrate with stripe then?

Add a Comment

Replies

so, my question is, is it possible to make full transaction success without backend server/stripe?

You can process a transaction on your client side app using the Apple Pay native iOS SDK, along with the built in Apple Pay service. All of this can be done without a server side component or integration with another vendor. Now, at some point you will need to integrate with a Payment Processor, whether that is Stripe or another vendor, that is completely up to you. However, sending the payment token to the Payment Processor is something that needs to be done because this is how the transaction is processed and how funds are ultimately exchanged. For a list of available Payment Processors, please see this page.

Matt Eaton
DTS Engineering, CoreOS
meaton3@apple.com

storeKit & in-app purchases would be one way to do it