paypal购买按钮返回客户详细信息

时间:2014-04-15 22:09:04

标签: paypal

我正在尝试购买移动购物车,并希望尽可能简化流程。

客户选择产品并计算总数。

他现在点击购买并将总金额发送到paypal express。

产品详细信息存储在我们自己的数据库中。

我们只需要允许发送到paypal帐户持有人地址和仅经过验证的帐户

我不希望客户输入他的送货地址(因为它存储在PayPal中)。

那么我怎样才能减轻痛苦并获得客户的详细信息。

当网站完成后,我将重定向回移动设备上的页面。发生这种情况时,我可以传递数据吗?

我正在使用立即购买按钮:

<form name="_xclick" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" id="business" value="payment@xxxx.com">
<input type="hidden" name="currency_code" id="currency_code" value="USD">
<input type="hidden" name="item_name" id="item_name"  value="Teddy Bear">
<input type="hidden" name="amount" id="amount" value="12.99">
<input name="return" type="hidden" value="http://xxxx.com?pageToJump=pagePayPalCompleted" />  <input name="cancel_return" type="hidden" value="http://xxxx.com?pageToJump=pagePayPalCancelled" /> 
<input type="image" src="http://www.paypalobjects.com/en_US/i/btn/btn_buynow_LG.gif"     border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
</form>

MrWarby。

1 个答案:

答案 0 :(得分:0)

如果您使用“立即购买”按钮,则默认情况下不会传回此信息,您需要启用PaymentDataTransfer:https://developer.paypal.com/docs/classic/paypal-payments-standard/integration-guide/paymentdatatransfer/或InstantPaymentNotification https://developer.paypal.com/webapps/developer/docs/classic/products/instant-payment-notification/