Home > OS >  How to integrate with Stripe payment gateway from MacOS desktop swift application [closed]
How to integrate with Stripe payment gateway from MacOS desktop swift application [closed]

Time:10-06

We have a MacOS desktop application written in Swift. When I try to integrate with Stripe payment gateway, it says platform not supported. I understand it will work in mobile. But what about desktop? Backend is not a problem. We have decided to use a spring boot application for backend.

CodePudding user response:

It sounds like you're trying to use Stripe's iOS SDK in a macOS application, but Stripe's iOS SDK does not support macOS at this time.

The best alternative would be a web-based Stripe integration that you link to from inside the app or display using a web view.

  • Related