2011-10-03 45 views
0

我對於澳大利亞的貝寶沙盒集成有問題。 在後端,我啓用了除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="[email protected]"> 
    <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> 

回答

1

我的代碼不能正常工作下去,但我沒有,我現在已經增加了計費領域和它的工作。

我沒有:

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

希望這有助於任何人

0

我有同樣的問題。我通過添加相同的字段來解決它,但沒有「billing_」。你的情況將是:

<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"> 

我不知道它是否是重要的或沒有,但我也刪除這兩個「billing_address2」和「地址2」做的。

相關問題