我已从链接下方创建了sandbox.paypal PayNow按钮
https://www.sandbox.paypal.com/us/webapps/mpp/standard-integration
然后我尝试添加可用于PayNow按钮的各种变量。他们中的一些工作是他们中的一些不工作。我列出了工作和非工作变量
工作变量 回来 2. cancel_return 3. no_note 4. item_name等。
非工作变量 金额 2. no_shipping 3. cbt 4.cpp_logo_image等
这样我发送变量
<input type="hidden" name="amount" value="10.00" />
我从paypal链接下面得到变量名称
我的代码
<form action="https://www.sandbox.paypal.com/cgi-bin/webscr"
method="post" target="_top" style="text-align: center;">
<input type="hidden" name="cmd" value="_s-xclick" /> <input
type="hidden" name="hosted_button_id" value="XXXXXXXX" /> <input
type="hidden" name="return"
value="xxxxxxxx" /> <input
type="hidden" name="cancel_return"
value="xxxxxxxx" />
<input type="hidden" name="no_shipping" value="1" />
<input type="hidden" name="cpp_logo_image" value="http://science-all.com/images/wallpapers/background-image/background-image-10.jpg" />
<input type="hidden" name="cbt" value="userID" />
<input type="hidden" name="amount" value="10.00" />
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="shipping" value="3.00" />
<input type="hidden" name="handling" value="2.00" />
<input type="hidden" name="no_note" value="1" />
<input type="hidden" name="item_name" value="Nexu Point Membership1">
<input type="image"
src="https://www.sandbox.paypal.com/en_US/i/btn/btn_paynowCC_LG.gif"
border="0" name="submit" alt="Please Wait..." /> <img alt=""
border="0" src="https://www.sandbox.paypal.com/en_US/i/scr/pixel.gif"
width="1" height="1" />
请帮我解决此问题。