简体   繁体   English

Paypal 不接受使用信用卡在移动设备上付款

[英]Paypal not accepting payments on mobile device with credit card

When I use Paypal for checkout on my website, Paypal is showing checkout without Paypal account on Desktop but not on a mobile device.当我在我的网站上使用 Paypal 进行结账时,Paypal 在桌面上显示没有 Paypal 帐户的结账,但在移动设备上却没有。

Do you know could be the reason for this?你知道这可能是什么原因吗?

This is the form I use to redirect a user to the Paypal checkout page:这是我用来将用户重定向到 Paypal 结帐页面的表单:

<form action="https://www.paypal.com/cgi-bin/webscr" name="paypalForm" method="post">
    <input type="hidden" name="cmd" value="_cart">
    <input type="hidden" name="upload" value="1">
    <input type="hidden" name="business" value="######@gmail.com">
    <input type="hidden" name="item_name_1" value="Product X">
    <input type="hidden" name="amount_1" value="<?php echo $price; ?>">
    <input type="hidden" name="custom" value="<?php echo $orderKey; ?>">
    <input type="hidden" name="SolutionType" value="sole">
</form>

The form is being submitted by JS.该表单正在由 JS 提交。

Thanks in advance!提前致谢!

using PayPal standard buttons, or ExpressCheckout, in some instances buyers will be able to pay with a debit/credit card and in some others they will only be able to open an account.使用 PayPal 标准按钮或 ExpressCheckout,在某些情况下,买家将能够使用借记卡/信用卡付款,而在其他一些情况下,他们只能开立账户。 This can depend on many factors such as cookies, mobile/web, time of the day, and many other internal security variables which makes it impossible to predict.这可能取决于许多因素,例如 cookie、移动/网络、一天中的时间,以及许多其他内部安全变量,这使得无法预测。 You could try to use the variable: solution_type = SOLE, it will give more chances to show the pay with card option but is not guaranteed.您可以尝试使用变量:solution_type = SOLE,它会提供更多机会显示带卡付款的选项,但不能保证。 If you wish to process card payments and you have a UK, USA or Canadian account you can think at PayPal Pro: - for US / Canada, PayPal Payments Pro ( https://www.paypal.com/webapps/mpp/paypal-payments-pro ) - for UK, PayPal Website Payments Pro ( https://www.paypal.com/uk/webapps/mpp/pro )如果您希望处理信用卡支付并且您拥有英国、美国或加拿大账户,您可以考虑使用 PayPal Pro: - 对于美国/加拿大,PayPal Payments Pro ( https://www.paypal.com/webapps/mpp/paypal- Payments-pro ) - 对于英国,PayPal 网站支付专业版 ( https://www.paypal.com/uk/webapps/mpp/pro )

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM