我正在尝试为 Paypal 设置订阅付款。我正在使用以下代码测试沙箱。
<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post" target="_top">
<br/>
<input type="hidden" name="cmd" value="_s-xclick"><br/>
<input type="hidden" name="hosted_button_id" value="3PFTX58KDNXHQ"><br/>
<input type="image" src="https://www.sandbox.paypal.com/en_US/i/btn/btn_subscribeCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!"><br/>
<img alt="" border="0" src="https://www.sandbox.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1"><br/>
</form>
上面的代码是我的沙盒帐户中自动生成的 subxcription 按钮代码。
它是沙盒中订阅的工作文件。我的意思是订阅完成后,它会在我的沙盒帐户中显示正确的数据以及订阅信息。但问题是当订阅完成并且用户返回站点时,它有一个 auth get 参数。喜欢
http://my-site.com/this-subscribe-button-return-url.php?auth=[auth_code_from_paypal]&form_charset=UTF-8
其实我的返回网址如下 http://my-site.com/this-subscribe-button-return-url.php?status=success
我启用了我的 ipn,它指向与返回 url 不同的 url。
这个身份验证值是多少?我该怎么办?
当有人完成对某个 url(如 notify_url)的订阅过程时,我希望将整个订阅数据发回。我已经在我的 ipn 设置中设置了我的 notify_url。
请有人为这些问题提供适当的解决方案。提前致谢。