Paypal 经常性问题 ruby​​ on rails

Posted

技术标签:

【中文标题】Paypal 经常性问题 ruby​​ on rails【英文标题】:Paypal recurring questions ruby on rails 【发布时间】:2015-12-16 03:47:50 【问题描述】:

我一直在关注 Railscast 289 关于如何使用 Paypal 进行定期付款的教程。

我现在一切正常,除了我现在正在努力弄清楚我如何才能知道用户是否在贝宝中取消了他们的订阅。

我做了什么

我已经设法在 paypal 商家帐户中设置了 IPN url,每次有人订阅它都会将数据从 paypal 发送到我的 webhook。

现在我正在存储 paypal 发送给我的所有参数,但我无法确定我应该检查哪些参数,以便了解用户是否取消了订阅,或者是否没有足够的资金等。

至少我认为它是这样工作的。

我正在使用Paypal Recurring Gem

问题

当 paypal 向我发送他们的 IPN 到我的 webhook 时,我如何注意到用户取消了他们的订阅。

我的 webhook atm

def create
    user_id = Subscription.find_by(paypal_customer_token: params[:payer_id]).user_id
    PaymentNotification.create!(params: params, user_id: user_id, user_role_id: params[:item_number], status: params[:payment_status], transaction_id: params[:txn_id])
    @user = User.find_by(id: user_id)
    if PaymentNotification.last.params[:profile_status] == "Cancelled"
        @user.update_attributes(user_role_id: 1)
    end
    render nothing: true
end

通知,我不想立即更新用户属性,我想等到他们的月订阅结束。

我目前将他们的 IPN 呼叫存储在 PaymentNotification 表中。

create_table "payment_notifications", force: :cascade do |t|
  t.text     "params"
  t.integer  "user_role_id"
  t.string   "status"
  t.string   "transaction_id"
  t.datetime "created_at",     null: false
  t.datetime "updated_at",     null: false
  t.integer  "user_id"
end

另外,检查这些参数以便对尚未付款或取消订阅的用户采取行动的最佳方法是什么?

我有另一个存储订阅的表

create_table "subscriptions", force: :cascade do |t|
  t.integer  "user_role_id"
  t.integer  "user_id"
  t.string   "paypal_customer_token"
  t.string   "paypal_recurring_profile_token"
  t.datetime "created_at",                     null: false
  t.datetime "updated_at",                     null: false
end

user_role 在这种情况下是他们订阅的plan

【问题讨论】:

您是否考虑将订阅到期日期存储在您的订阅表中?当收到通知时,您会更新该值。您需要一个守护程序或 chronjob 来每天/每小时/等运行。 【参考方案1】:

IPN 确保您在交易发生任何变化时收到通知,从定期付款的角度来看,当您的客户取消配置文件时,触发事件的 POST-Back 将被发送到您的 IPN 侦听器。

配置文件取消的示例原始 POST-Back 消息将如下所示,

payment_cycle=Daily &txn_type=recurring_payment_profile_cancel &last_name=US &next_payme
nt_date=N/A &residence_country=US &initial_payment_amount=0.00 &currency_code=USD &t
ime_created=19:25:09 Sep 24, 2015 PDT &verify_sign=AgUGxKs4vGiEqeit6IyHkIjDJVpeAqCMRVC4wh9CZYotn
Jqrr-3oWsFe &period_type= Trial &payer_status=verified &test_ipn=1 &tax=0.00 &pa
yer_email=USP@email.com &first_name=Payer &receiver_email=USM@email.com &payer_id=8FMFQ2
KVYYHTY &product_type=1 &shipping=0.00 &amount_per_cycle=2.00 &profile_status=Cancel
led &charset=gb2312 &notify_version=3.8 &amount=2.00 &outstanding_balance=0.00 &recurring_payment_id=I-30FKJ55UV1RW &product_name=RP BA Test &ipn_track_id=65583f3a80f10

    当取消发生时,您如何能注意到?

    读取 IPN 消息中的参数txn_type,并用它确定事件类型(在您的情况下,事件类型将是recurring_payment_profile_cancel,在PayPal IPN Variables 中的txn_type 列表中找到更多详细信息)

    将配置文件/订阅与您的数据库条目核对并采取行动

    将 IPN 消息中的 recurring_payment_id=I-30FKJ55UV1RW 与您预先存储的数据库条目 paypal_recurring_profile_token 匹配,并采取措施更新 user_role_id 字段。 (立即停止订阅或根据您的业务模式更新/设置新的到期日期)

【讨论】:

嘿,谢谢你的回答。所以我只需要关注txn_type 就可以采取正确的行动了对吧? 没错,txn_type 是在这种情况下收到 IPN 消息时首先要查看的内容

以上是关于Paypal 经常性问题 ruby​​ on rails的主要内容,如果未能解决你的问题,请参考以下文章

paypal gem 多个帐户 ruby​​ on rails

如何在 Ruby on Rails 中集成 Paypal 集成

如何将 paypal 与 ruby​​ on rails 应用程序集成?

Faraday::ConnectionFailed, Connection denied - connect(2) for “localhost” port 9200 Error Ruby on Ra

paypal 与 ruby​​ on rails 集成的“zoid 破坏了所有错误”

商家的账户无法处理 activemerchant + Ruby on rails + Paypal 的交易