2

我使用了贝宝快速结帐沙箱,但是当我点击购买东西时,贝宝中没有显示任何价格或商品名称。 在此处输入图像描述

在我的页面上,我放了这个表格:

<form action='expresscheckout.php' METHOD='POST'>
<input type='image' name='submit' src='https://www.paypal.com/en_US/i/btn/btn_xpressCheckout.gif' border='0' align='top' alt='Check out with PayPal'/>
</form>

我已经将这两个来自贝宝的代码包含到我的脚本中:

https://www.paypal-labs.com/integrationwizard/ecpaypal/download.php?file=ecfile

https://www.paypal-labs.com/integrationwizard/ecpaypal/download.php?file=pplibfile

正如我所说,当我点击支付按钮时,它会将我带到贝宝沙箱,但没有价格或商品名称。我什至用真实的 API 名称尝试过这个并通过但仍然没有价格。

同时,我还在 expressscheckout.php 中手动设置了价格:

$paymentAmount = $_SESSION["Payment_Amount"];

$paymentAmount = 32;

4

1 回答 1

0

对于网站支付标准:我在表单标签中添加了以下两个标签:

<input type="hidden" name="item_name" value="<?php print $itemName; ?> "/>
<input type="hidden" id="amount" name="amount" value="<?php print $amount; ?>"/>
于 2012-08-14T11:01:59.037 回答