gpt4 book ai didi

ruby-on-rails - Paypal自适应支付IPN回调: how to return the complete unaltered ipn message

转载 作者:太空宇宙 更新时间:2023-11-03 16:03:10 28 4
gpt4 key购买 nike

我在市场(买家和卖家)上工作,中间商从每次购买中分一杯羹。我想让买家在购买按钮被重定向到 Paypal 后立即购买商品。这很好并且有效。

response = ADAPTIVE_GATEWAY.setup_purchase(
:return_url => 'return_url',
:cancel_url => 'cancel_url',
:ipn_notification_url => 'ipn_notification_url',
:receiver_list => recipients,
)
# ADAPTIVE_GATEWAY.set_payment_options(...)
redirect_to (ADAPTIVE_GATEWAY.redirect_url_for(response['payKey']))

下一步是使用 ipn 验证交易。我确实收到了 paypal 回调,但我不清楚应该返回什么?

def notify_cb
notify = ActiveMerchant::Billing::Integrations::PaypalAdaptivePayment::Notification.new(request.raw_post)

if notify.acknowledge
update_attributes({
:transaction_id => notify.transaction_id,
:status => notify.status
})
end

render :nothing => true # render nothing?!? RENDER_LINE
end

SO 上的大多数示例不呈现任何内容 (RENDER_LINE),而在 paypal 文档中,流程描述为 (https://www.x.com/developers/paypal/documentation-tools/ipn/integration-guide/IPNIntro#protocol_and_arch):

IPN 协议(protocol)包括三个步骤:

  1. PayPal 向您的 IPN 监听器发送一条消息,通知您该事件

  2. 您的监听器将完整的未更改消息发送回 PayPal;消息必须包含相同顺序的相同字段,并以与原始消息相同的方式进行编码

  3. PayPal 发回一个单词,如果消息源自 PayPal,则为 VERIFIED,如果与最初发送的内容有任何差异,则为 INVALID

我的问题是如何将完整的未更改消息返回给 PayPal,或者我对流程的理解遗漏/有误?

最佳答案

你回贴到https://sandbox.paypal.com/吗或 https://www.sandbox.paypal.com/cgi-bin/webscr (要么包括“cmd=_notify-validate 作为你的 POST 数据的一部分,要么通过 GET 包括)?

前者返回 HTTP 301,因为您基本上是直接指向主页,而后者将直接指向托管 IPN 验证逻辑的页面。

关于ruby-on-rails - Paypal自适应支付IPN回调: how to return the complete unaltered ipn message,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16286710/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com