PayPal 自动填写信用卡详细信息

PayPal autofill the Credit Card details

我正在使用 PayPal 信用卡,我正在尝试使用他们的代码填写表格:

paypal.Buttons({
            style: {
                layout:  'vertical',
                shape: 'rect',
                height: 36
            },
            createOrder: function (data, actions) {
                return actions.order.create({
                    //https://developer.paypal.com/docs/checkout/integration-features/standard-card-fields/
                    payer: {
                        name: {
                            given_name: "PayPal",
                            surname: "Customer"
                        },
                        address: {
                            address_line_1: '123 ABC Street',
                            address_line_2: 'Apt 2',
                            admin_area_2: 'San Jose',
                            admin_area_1: 'CA',
                            postal_code: '95121',
                            country_code: 'US'
                        },
                        email_address: "customer@domain.com",
                        phone: {
                            phone_type: "MOBILE",
                            phone_number: {
                                national_number: "14082508100"
                            }
                        }
                    },
                    application_context: {
                        shipping_preference: 'NO_SHIPPING'
                    },
                    purchase_units: [{
                        description: getPurchaseDescription(),
                        amount: {
                            value: $("#Amount").val()
                        }
                    }]
                });
            },

很好用,但我也想填写信用卡号和到期日。有什么办法吗? 我试过了

card: {
          number: "378282246310005"
      }

但是信用号没有填写

谢谢。

I want to fill the credit card number and expiry date too. Is there any way to do this?

没有。 PayPal 的 SDK 按钮只能由输入自己的付款信息(登录名或银行卡详细信息)的客户在自己的设备上使用

另外请注意,卡号和随附的有效期是非常敏感的信息,大多数系统通常不应存储这些信息,但在极少数情况下,必须采取严格的措施来存储它们,包括D

类型的 PCI SAQ