不使用 storekit 在应用程序内购买
我想制作一个应用程序,使用户能够通过我的应用程序订购食物,并且他们可以使用信用卡或任何其他付款方式付款。而且我不希望苹果拿走交易的 30%。
有什么方法可以做到这一点,这对苹果来说违法吗?
谢谢
I want to make an application that make the users able to order food through my application and they can pay using their credit card or any other payment method. and I don't want apple to take 30% of the transaction.
what methods are available to do this, and is this illegal for Apple?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你不能使用storekit来做到这一点,苹果会立即拒绝它(违反了协议中的11.3)。如果您真的想这样做,您有两个选择:
1.) 编写一个 Web 应用程序而不是本机 iOS 应用程序。
2.) 采取类似于 Square 的做法,通过自己的服务处理信用卡付款。
You can't use storekit to do this, Apple will reject it immediately (violates 11.3 in the agreement). If you REALLY want to do that, you have two options:
1.) Write a web app instead of a native iOS app.
2.) Do something like what Square is doing where they process credit card payments through their own service.
此链接让我相信,如果您不购买内容或附加应用程序功能,则用户进行的任何购买都无需支付 Apple 收取的版税。
也就是说,您必须找到一些服务(大概是 Web 服务,例如 Amazon FPS)将以适合您业务流程的方式处理食品付款。
This link leads me to believe that if you're not purchasing content or additional application features, any purchases the user makes are not subject to royalties collectable by Apple.
That said, you'll have to find some service (presumably a web service, like Amazon FPS) that will process the food payments in a way that works for your business process.