我想自动创建一个paypal立即购买按钮。
最简单的方法是什么?
答案 0 :(得分:17)
我还发现你可以在这样的网址中传递信息:
https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=herschelgomez@xyzzyu.com&item_name=Hot Sauce-12+oz.+Bottle&item_number=12345&amount=5%2e95¤cy_code=USD
你可以这样做:
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=herschelgomez@xyzzyu.com&item_name=Hot Sauce-12+oz.+Bottle&item_number=12345&amount=5%2e95¤cy_code=USD">
<img src="/buynow.png" />
</a>
答案 1 :(得分:7)
以下页面列出了“立即购买”按钮的最低要求信息。我已经包含了最简单的例子:
https://www.paypal.com/cgi-bin/webscr?cmd=_pdn_xclick_techview_outside
<?php
echo '<form name="_xclick" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="me@mybusiness.com">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="item_name" value="Teddy Bear">
<input type="hidden" name="amount" value="12.99">
<input type="image" src="http://www.paypal.com/en_US/i/btn/btn_buynow_LG.gif" border="0" name="submit" alt="Make payments with PayPal - it\'s fast, free and secure!">
</form>';
不要忘记转义任何“'”字符(单引号)。
答案 2 :(得分:1)
添加简单的paypal立即购买按钮的HTML代码是:
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<!-- Identify your business so that you can collect the payments. -->
<input type="hidden" name="business" value="email@domain.com">
<!-- Specify a Buy Now button. -->
<input type="hidden" name="cmd" value="_xclick">
<!-- Specify details about the item that buyers will purchase. -->
<input type="hidden" name="item_name" value="Demo Ebook">
<input type="hidden" name="amount" value="5">
<input type="hidden" name="currency_code" value="USD">
<!-- Display the payment button. -->
<input type="image" name="submit" border="0" src="https://www.paypal.com/en_US/i/btn/btn_buynow_LG.gif" alt="PayPal - The safer, easier way to pay online">
<img alt="" border="0" width="1" height="1" src="https://www.paypal.com/en_US/i/scr/pixel.gif">
</form>
如果要动态更改项目,只需更改item_name值。
可以找到有关演示和下载链接的更多信息here
答案 3 :(得分:0)
我知道它已经有一段时间了,但这是最好的帮助:
https://www.paypal.com/cgi-bin/webscr?cmd=_singleitem-intro-outside
只需填写表单,PayPal就会为您生成HTML表单。在左侧的按钮导航下,您还可以生成&#34;立即购买&#34;,&#34;添加到购物车&#34;,&#34;捐赠&#34;,&#34;购买礼品的代码证书&#34;和&#34;订阅&#34;。