Apple 是否允许我们将用户的信用卡信息从应用程序发送到服务器以进行支付?
Does Apple allow us to send Credit Card information of the user from the app to the server for payment purpose?
Does Apple allow us to send Credit Card information of the user from the app to the server for payment purpose? Even though we are not going to save any card information on the server , will they accept to send Credit Card information to the web service which in turn will process the payment transactions.
至少在美国有严格的规则,由政府制定,涵盖金融信息(如信用卡)的收集、传输和存储。不,您绝对不能通过 Internet 以自由文本形式发送信用卡信息。
对于一家小公司,您最好许可他人的支付系统,而不是自己尝试这样做,因为遵守规则很复杂并且涉及责任。
这是我在 PCI 合规性上找到的 link:
是的,Apple 会允许。 我已经上传了 3 个在服务器端使用付款的应用程序,我正在接受卡信息并通过 POST 方法发送到服务器服务器还应具有安全套接字层 (e.g.HTTPS)。如果您不保存卡,则完全不用担心。但是,如果您在本地存储中保存卡信息,则不允许。此外,如果您出售的商品不是通过应用程序内购买出售的。如果它可以通过应用程序内销售,那么 Apple 会拒绝您的应用程序。
Does Apple allow us to send Credit Card information of the user from the app to the server for payment purpose? Even though we are not going to save any card information on the server , will they accept to send Credit Card information to the web service which in turn will process the payment transactions.
至少在美国有严格的规则,由政府制定,涵盖金融信息(如信用卡)的收集、传输和存储。不,您绝对不能通过 Internet 以自由文本形式发送信用卡信息。
对于一家小公司,您最好许可他人的支付系统,而不是自己尝试这样做,因为遵守规则很复杂并且涉及责任。
这是我在 PCI 合规性上找到的 link:
是的,Apple 会允许。 我已经上传了 3 个在服务器端使用付款的应用程序,我正在接受卡信息并通过 POST 方法发送到服务器服务器还应具有安全套接字层 (e.g.HTTPS)。如果您不保存卡,则完全不用担心。但是,如果您在本地存储中保存卡信息,则不允许。此外,如果您出售的商品不是通过应用程序内购买出售的。如果它可以通过应用程序内销售,那么 Apple 会拒绝您的应用程序。