URL而非Paypal表单(分期付款计划)

时间:2013-08-29 18:59:06

标签: html paypal

我有一个Paypal生成的分期付款计划代码,我想把它变成一个直接链接的信号网址。

以下是代码:

<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">

<input type="hidden" name="cmd" value="_s-xclick">

<input type="hidden" name="hosted_button_id" value="SOME VALUE HERE">

<input type="hidden" name="return" value="http://www.mysite.com/thanks.html"/>

<table>

<tr><td><input type="hidden" name="on0" value="plan"></td></tr>

<tr><td><input type="hidden" name="os0" value ="option_0"></td><td><strong>Beginner -     £137.50 every month for 4 months</strong></td></tr>

<tr><td></td><td>Number of payments 4</td></tr><tr><td></td><td>Start payments At     checkout</td></tr>

<tr><td></td><td>

<table>

<tr><th align="left">Due*</th><th align="right">Amount</th></tr>

<tr><td>At checkout</td><td align="right">£137.50 GBP</td></tr><tr><td>Every 1 month (x     3)</td><td align="right">£137.50 GBP</td></tr><tr><td COLSPAN="2" ALIGN="right">Total     £550.00 GBP</td></tr></table></td></tr>

<tr><td colspan="3"><i>* We calculate payments from the date of checkout.</i></td></tr>    </table>

<table><tr><td align=center><i>Sign up for</i></td></tr><tr><td><input type="image"     src="https://www.paypalobjects.com/en_US/GB/i/btn/btn_installment_plan_LG.gif" border="0"     name="submit" alt="PayPal – The safer, easier way to pay online."></td></tr></table>

<img alt="" border="0" src="https://www.paypalobjects.com/en_GB/i/scr/pixel.gif"     width="1" height="1">

</form>

我已准备好Paypal开发人员文档,但找不到任何有用的内容。 你能帮我解决这个问题吗? 请注意,这是分期付款计划(定期付款)

2 个答案:

答案 0 :(得分:0)

答案 1 :(得分:0)

已解决!!

几天之后,这里有多个电子邮件和Paypal电话。

我们的WordPress网站上有一个定价表,只允许插入电子邮件链接。由于我们有分期付款选项按钮,并且不想使用俗气的旧Paypal按钮。

问题:问题是PP没有获取所有参数,因为它设置为链接而不是HTML。请确保对参数进行适当编码,以避免由于未编码的字符而导致URL字符串丢失参数。

解决方案:基本上您需要将变量作为GET参数添加到您的URL字符串中。所以链接看起来像这样  https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=在此处插入按钮值&amp; on0 =&amp; os0 = option_0&amp; currency_code = USD

将指定的按钮值ID放在&#34;在此处插入按钮值&#34;部分。

  • 注意你的间距!!!!

我觉得我解决了人类最神秘的问题。享受!