paypal自适应支付IPN中的自定义字段
我在我的网站中实施了自适应支付。首先,它是标准付款,因此我在表单中传递自定义
参数,并在 IPN 中获取它。但我无法找到如何在自适应支付中传递此参数。
谢谢
I have implemented Adaptive Payment in my website. First It was Standard Payment so in that i was passing a custom
parameter in the form and i was getting it in IPN. But i am unable to find how to pass this parameter in Adaptive Payment.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
[编辑]
根据 @jackvsworld 在 PayPal Adaptive 中建议使用参数作为
ipnNotificationUrl
。我通过传递到
notify_url
的GET
参数来做到这一点,例如
http://www.mywebsite.com/index.php?param_1=value¶m_2=value
[Edit]
As per @jackvsworld suggests in PayPal Adaptive use parameter as
ipnNotificationUrl
.I did this by passing into
GET
parameters ofnotify_url
For e.g.
http://www.mywebsite.com/index.php?param_1=value¶m_2=value
我同意 @jimy 使用查询字符串,但在 PayPal Adaptive 中,参数是不是
notify_url
。对于 PayPal Adaptive,请使用付款或预批准请求的
ipnNotificationUrl
字段来源:识别 PayPal 的 IPN 侦听器
I agree with @jimy to use the querystring, but in PayPal Adaptive the parameter is not
notify_url
.For PayPal Adaptive use the
ipnNotificationUrl
field of the Pay or Preapproval requestSource: Identifying Your IPN Listener to PayPal