请返回付款页面并更正地址

时间:2011-10-03 09:24:11

标签: paypal

我在为澳大利亚整合paypal沙箱时遇到了问题。 在后端我启用除billing_phone号码以外的所有选项卡。当我点击付款时,我得到以下错误请返回付款页面并更正地址。我在附上我的代码。提前谢谢

<iframe name="hss_iframe" width="600px" height="600px" style="margin-top:-5px"></iframe>
<form style="display:none" target="hss_iframe" name="form_iframe" method="post" action="https://securepayments.sandbox.paypal.com/acquiringweb">
  <input type="hidden" name="cmd" value="_hosted-payment">
  <input type="hidden" name="currency_code" value="AUD">
  <input type name="subtotal" value="71">
  <input type="hidden" name="business" value="FK4PGWANVUF9C">
  <input type="hidden" name="shipping" value="0">
  <input type name="paymentaction" value="sale">
  <input type="hidden" name="template" value="templateD">
  <input type="hidden" name="invoice" value="12345">
  <input type="hidden" name="billing_first_name" value="John">
  <input type="hidden" name="billing_last_name" value="Due">
  <input type="hidden" name="billing_address1" value="5 Cromwell St">
  <input type="hidden" name="billing_address2" value="Glen Iris">
  <input type="hidden" name="billing_city" value="Glen Iris">
  <input type="hidden" name="billing_state" value="VIC">
  <input type="hidden" name="billing_zip" value="3146">
  <input type="hidden" name="buyer_email" value="mark@bssound.com.au">
  <input type="hidden" name="billing_country" value="AU">
  <input type name="return" value="https://122.165.58.219/team2/wpp-hosted/receipt_page.html">
</form>
<script type="text/javascript">
    document.form_iframe.submit();
</script>

2 个答案:

答案 0 :(得分:1)

我的代码也没有工作,但是我没有我现在添加的结算字段并且它有效。

我没有:

<input type="hidden" name="currency_code" value="AUD">
<input type="hidden" name="shipping" value="0">

希望这有助于任何人

答案 1 :(得分:0)

我遇到了同样的问题。我通过添加相同的字段来解决它,但没有&#34;结算_&#34;。在你的情况下,它将是:

<input type="hidden" name="first_name" value="John">
<input type="hidden" name="last_name" value="Due">
<input type="hidden" name="address1" value="5 Cromwell St">
<input type="hidden" name="city" value="Glen Iris">
<input type="hidden" name="state" value="VIC">
<input type="hidden" name="zip" value="3146">
<input type="hidden" name="country" value="AU">

我不知道它是否重要,但我也删除了&#34; billing_address2&#34;和&#34;地址2&#34;。