0

我知道在 SO 上已经有很多这样的问题,但他们的答案都不适合我。

我正在使用简单的按钮形式:

<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input name="cmd" type="hidden" value="_s-xclick" />
<input type="hidden" name="amount" value="500.00">
<input type="hidden" name="currency_code" value="AUD">
<input name="hosted_button_id" type="hidden" value="XXXXX" />
<input alt="PayPal &mdash; The safer, easier way to pay online." name="submit" src="https://www.paypalobjects.com/en_AU/i/btn/btn_paynowCC_LG.gif" type="image" />
<img src="https://www.paypalobjects.com/en_AU/i/scr/pixel.gif" border="0" alt="" width="1" height="1" />
</form>

但得到错误: The link you have used to enter the PayPal system contains an incorrectly formatted item amount.

根据我的研究,这是因为该值需要 2 位小数且没有货币符号。但正如你所看到的,我已经尝试过了。我尝试过的其他版本是:

 value=500.00>
 value="$500.00">
 value="500">
 value="500.00">
 value='500.00'>

有人会知道发生了什么吗?谢谢!

4

1 回答 1

0

好的,我想我已经解决了。

问题似乎是我使用的是托管的“立即购买”按钮,而不是普通的“立即购买”按钮。我能说的唯一区别是这条线

<input name="hosted_button_id" type="hidden" value="XXXXX" />

经过多次挣扎和 2 次无用的 PayPal 呼叫后,我找到了我打算在这里使用的按钮:

https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_html_buynow_buttons#id089UG070BRO

Let me say for the record that the PayPal API documentation is a complete nightmare!

于 2012-08-29T05:03:14.540 回答