Paypal 没有覆盖 return URL?
Paypal is not overriding the return URL?
我需要从 paypal
按钮 HTML
代码覆盖给定的默认值 Auto return
URL。我遵循了这些步骤:
- 检查自动 return Url 部分并给出默认值 URL
- 生成一个
Buy Now
按钮并保留 Return
和 Cancel
URL 选项。
粘贴按钮代码
<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="return" value="http://www.someURL.com"/>
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="G3WQ*******">
<input type="image" src="https://www.sandbox.paypal.com/en_GB/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="PayPal – The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.sandbox.paypal.com/en_GB/i/scr/pixel.gif" width="1" height="1">
</form>
在 Sandbox
上成功付款后,PayPal 总是将我重定向到默认设置 URL。
为什么不覆盖它?任何帮助将不胜感激。
我在 PayPal
社区和 Whosebug 上也看到了几个类似的未回答问题:
- https://www.paypal-community.com/t5/About-Payments-Archive/Auto-Return-Custom-URL-Not-Overriding-Auto-Return-Setting-URL/td-p/1038334
- Paypal button auto-return url not overriding the default url
- Setting PayPal return URL and making it auto return?
当您使用托管按钮时,您将无法直接在按钮中使用 return 字段。创建按钮(或通过 PayPal 帐户编辑按钮)时,必须在托管按钮设置中进行设置。
如果您希望能够即时设置自己的 return URL,则必须使用非托管按钮。
我需要从 paypal
按钮 HTML
代码覆盖给定的默认值 Auto return
URL。我遵循了这些步骤:
- 检查自动 return Url 部分并给出默认值 URL
- 生成一个
Buy Now
按钮并保留Return
和Cancel
URL 选项。 粘贴按钮代码
<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post" target="_top"> <input type="hidden" name="return" value="http://www.someURL.com"/> <input type="hidden" name="cmd" value="_s-xclick"> <input type="hidden" name="hosted_button_id" value="G3WQ*******"> <input type="image" src="https://www.sandbox.paypal.com/en_GB/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="PayPal – The safer, easier way to pay online!"> <img alt="" border="0" src="https://www.sandbox.paypal.com/en_GB/i/scr/pixel.gif" width="1" height="1"> </form>
在 Sandbox
上成功付款后,PayPal 总是将我重定向到默认设置 URL。
为什么不覆盖它?任何帮助将不胜感激。
我在 PayPal
社区和 Whosebug 上也看到了几个类似的未回答问题:
- https://www.paypal-community.com/t5/About-Payments-Archive/Auto-Return-Custom-URL-Not-Overriding-Auto-Return-Setting-URL/td-p/1038334
- Paypal button auto-return url not overriding the default url
- Setting PayPal return URL and making it auto return?
当您使用托管按钮时,您将无法直接在按钮中使用 return 字段。创建按钮(或通过 PayPal 帐户编辑按钮)时,必须在托管按钮设置中进行设置。
如果您希望能够即时设置自己的 return URL,则必须使用非托管按钮。