我已在我的网站上集成了PayPal“立即购买”按钮,如下所示:
<form name="_xclick" action="https://www.paypal.com/uk/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="RECEIVER@RECEIVER.com">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="item_name" value="description here">
<input type="hidden" name="amount" value="100">
<input type="image" src="https://www.paypalobjects.com/en_US/NL/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
</form>
成功购买后,我想将用户重定向到某个页面(事先不知道 - 动态)。如何实现这一目标?
答案 0 :(得分:2)
您需要在表单中设置“返回”字段。像这样:
<input type="hidden" name="return" value="URLspecificToThisTransaction">
有关详细信息,请访问documentation here