如何从 Paypal 授权页面删除稍后付款
How to remove Pay later from Paypal Authorize page
我们正在尝试将贝宝结帐集成到我们的网络应用程序中。我可以使用查询参数 disable-funding=credit,card here However I still see the options for Pay-later on my Paypal authorize page (https://www.sandbox.paypal.com/webapps/hermes...) 隐藏支付(信用)和卡选项,使其不轻易显示(附截图)。如何禁止它们出现在授权页面上?提前致谢。
你不能。您只能控制显示在您自己网站上的按钮。
在 PayPal,买家可以随时使用他们可能有资格获得的任何资金来源。它在他们和 PayPal 之间,并且在设计上都是保密的。
(PayPal 付款的收款人永远不会知道付款人是使用上述资金来源之一,还是银行、信用卡或 PayPal 余额等其他来源。这是他们的 none 业务。 )
您必须将选项 disableFunding 设置为 'credit'。
如果您使用的是脚本标签
<script src="https://www.paypal.com/sdk/js?client-id=YOUR_ID&disable-funding=credit"></script>
如果一个包将 options 中名为 disableFunding 的属性设置为 credit .
例如。使用反应
<PayPalButton
amount="1.00"
currency={currency}
catchError={(err: Error) => console.log(err)}
options={{ currency:"USD", clientId:"xxxxx", disableFunding: 'credit' }}
onError={(err: Error) => console.log(err)}
/>
我们正在尝试将贝宝结帐集成到我们的网络应用程序中。我可以使用查询参数 disable-funding=credit,card here However I still see the options for Pay-later on my Paypal authorize page (https://www.sandbox.paypal.com/webapps/hermes...) 隐藏支付(信用)和卡选项,使其不轻易显示(附截图)。如何禁止它们出现在授权页面上?提前致谢。
你不能。您只能控制显示在您自己网站上的按钮。
在 PayPal,买家可以随时使用他们可能有资格获得的任何资金来源。它在他们和 PayPal 之间,并且在设计上都是保密的。
(PayPal 付款的收款人永远不会知道付款人是使用上述资金来源之一,还是银行、信用卡或 PayPal 余额等其他来源。这是他们的 none 业务。 )
您必须将选项 disableFunding 设置为 'credit'。
如果您使用的是脚本标签
<script src="https://www.paypal.com/sdk/js?client-id=YOUR_ID&disable-funding=credit"></script>
如果一个包将 options 中名为 disableFunding 的属性设置为 credit .
例如。使用反应
<PayPalButton
amount="1.00"
currency={currency}
catchError={(err: Error) => console.log(err)}
options={{ currency:"USD", clientId:"xxxxx", disableFunding: 'credit' }}
onError={(err: Error) => console.log(err)}
/>