xcode 哪个是 iOS 应用程序中购买服务的最佳支付网关?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/24930200/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-15 05:15:40  来源:igfitidea点击:

which is the best payment gateway for service purchasing in iOS app?

iosxcodepayment-gateway

提问by Anilkumar iOS ReactNative

I am developing one application for iOS. In that user can purchase doctor services. I dont have any idea about payment gateways. So, please suggest me which is the best payment gateway method and how to implement that in my iOS app. ( I am from India), i heard payment gateway methods depends upon the country.

我正在为 iOS 开发一个应用程序。在那个用户可以购买医生服务。我对支付网关一无所知。所以,请建议我哪种是最好的支付网关方法以及如何在我的 iOS 应用程序中实现它。(我来自印度),我听说支付网关方法取决于国家/地区。

采纳答案by Alok SInha

Generally speaking, yes, your app will be rejected. According to section 11.2 of the App Store Review Guidelinesfor iOS (Login Required) any app that doesn't use In-App purchase will be rejected.

一般来说,是的,您的应用程序将被拒绝。根据iOS应用商店审核指南(需要登录)的第 11.2 节,任何不使用应用内购买的应用都将被拒绝。

11.2 Apps utilizing a system other than the In App Purchase API (IAP) to purchase content, functionality, or services in an app will be rejected

11.2 使用应用程序内购买 API (IAP) 以外的系统购买应用程序中的内容、功能或服务的应用程序将被拒绝

Additionally, note that any purchase of real world goods or services is not allowed as per section 11.3. I suggest reading the whole document, or at least section 11 (and 20 if it's a charity app). That should give you a pretty good idea of what's allowed and what's not.

此外,请注意,根据第 11.3 节,不允许购买任何真实世界的商品或服务。我建议阅读整个文档,或者至少阅读第 11 节(如果是慈善应用,则阅读 20 节)。这应该让您非常清楚什么是允许的,什么是不允许的。

If you are purchasing digital content for use within the app you must use in-app purchase ,for real goods like book ,pencil,Cd you can use PayPal.

如果您购买要在应用内使用的数字内容,则必须使用应用内购买,对于书籍、铅笔、CD 等真实商品,您可以使用 PayPal。

回答by CharlesA

There are quite a few - also depends on your country as not all providers cover all countries. Take a look at:

有很多 - 也取决于您所在的国家/地区,因为并非所有提供商都涵盖所有国家/地区。看一眼:

https://stripe.com/

https://stripe.com/

https://www.braintreepayments.com/

https://www.braintreepayments.com/

and probably http://www.paypal.com

可能还有http://www.paypal.com

What you want is something that's easy to code for (securely) in iOS. All the above (as well as many others) have APIs and sample code that make connecting to process payments easy and secure.

您想要的是在 iOS 中易于(安全地)编码的东西。以上所有(以及许多其他)都有 API 和示例代码,可以轻松安全地连接到处理付款。

EDIT

编辑

Just seen you've added that you're in India. Assuming that means that you want to process payments in India, then I think your options (as at July 2014) are more limited. Certainly stripe and braintree don't cover India. I believe PayPal do (although maybe not with their latest APIs), so that might be your best bet.

刚刚看到你补充说你在印度。假设这意味着您想在印度处理付款,那么我认为您的选择(截至 2014 年 7 月)更加有限。当然,stripe 和braintree 不包括印度。我相信 PayPal 可以(尽管可能不是他们最新的 API),所以这可能是您最好的选择。