0

我正在使用 PayPal 支付标准。在x.com上它说:

移动 PayPal 支付标准 (MPPS) 基于 PayPal 支付标准 (PPS)。PPS 是将 PayPal 支付流程集成到网站的最简单方法,一旦集成到网站,移动 功能会自动提供给使用移动设备访问您网站的用户。

一切都在结帐,但它始终是 PC 版本。尝试使用 iOS 和 Android 手机、BlueStacks 模拟器和来自 Chrome 开发者工具的不同用户代理设置。两者都不起作用。

这是我的按钮:

<form action="https://www.paypal.com/cgi-bin/webscr" method="post" name="paypal_form">
    <!-- Things you should change on per order -->
    
    <input type="hidden" name="item_name" value="<?=$paypalItemName?>"> <!-- Description of goods -->
    <input type="hidden" name="amount" value="<?=$total_amount?>"> <!-- Amount to bill customer -->
    <input type="hidden" name="invoice" value="<?=$paypalID?>"> <!-- Unique sales ID number -->
     
    <!-- Things you only need to change on setup -->
    
    <input type="hidden" name="business" value="name@mydomain.com">   <!-- Master Paypal Email -->
    <input type="hidden" name="currency_code" value="USD"> <!-- Currency -->
    <input type="hidden" name="return" value="http://www.mydomain.com/order-success.php?ppl=1&subscription_id=<?php echo $paypalID; ?>"> <!-- Your thank you page -->
    <input type="hidden" name="cancel_return" value="http://www.mydomain.com/order-declined.php">  <!-- Page incase of error-->

    <!-- Things you should not change -->
    
    <input type="hidden" name="cmd" value="_xclick">
    <input type="hidden" name="undefined_quantity" value="1"> <!-- Quantity - Keep One -->
    <input type="hidden" name="item_number" value="1"> <!-- Item Number-->
    <input type="hidden" name="charset" value="utf-8"> <!-- Leave as is -->
    <input type="hidden" name="no_note" value="1"> <!-- No note required by customer -->
    <input type="hidden" name="notify_url" value="https://www.mydomain.com/api/paypal.php"> <!--Leave as is-->
    
    <input type="image" src="http://images.paypal.com/images/x-click-but01.gif" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
</form>

使用cmd="_express-checkout"版本,我可以cmd="_express-checkout-mobile"在我的表单上将其更改为,但对于cmd="_xclick".

那么,我应该Exrepess Checkout为移动设备实施还是有办法通过 PayPal Payments Standard 来实现呢?

可能重复: 针对 PayPal 网站付款标准的移动优化结帐 在接受的答案中,它说要检查电子邮件。我无法访问它,但我尝试使用我的个人电子邮件,它没有任何额外的运费税和税收规则设置。

4

1 回答 1

0

如果您正在专门为移动设备构建页面,那么我建议您使用移动设备的 Express Checkout。但是,如果您想使用网站支付标准,则没有代码可以专门通过移动流程引导买家。PayPal 页面会发现它是移动设备,并通过移动流程引导买家。但是,情况并非总是如此。有些事情会导致买家通过常规网络流程而不是移动流程,即使他们在移动设备上也是如此。这可能取决于他们使用的按钮类型或代码中传递的变量,因为移动流程不支持所有变量。

于 2013-03-07T13:55:29.293 回答