遅刻したほうがいいですよね?
PaypalGateway
ActiveMerchantの実際のマスターブランチには、との両方に統合された繰り返しクラスが含まれていPaypalExpressGateway
ます。
これが機能するデモスニペットです。私はいくつかの点についてよくわかりません(私がそれらを理解したらすぐに答えを更新します)、それは次のとおりです:
- 請求契約を設定するだけでは、設定に関係なく価格は表示されません
:initial_amount
。アイテムを含めると、アイテムの価格が。より上に表示されbilling_agreement[:description]
ます。そのため、これがキャプチャにどのように影響するかはわかりません。これは、最近テストしているものです。
IPN通知。次のスニペットにはありません。以下を更新...
class PaymentsController < ApplicationController
include ActiveMerchant::Billing
# GET /subscriptions/:id/checkout
def checkout
payment_request = PAYPAL_EXPRESS_GATEWAY.setup_purchase(@subscription.price_in_cents,
:billing_agreement => {
:type => 'RecurringPayments',
:description => 'Subscription agreement',
},
:currency => 'CHF',
:no_shipping => true,
:allow_guest_checkout => true,
:allow_note => false,
:initial_amount => @subscription.price_in_cents,
:locale => 'de',
:ip => request.remote_ip,
:return_url => url_for(:action => :confirm, :only_path => false),
:cancel_return_url => url_for(:action => :cancel, :only_path => false),
# Looks like :notify_url is not used here, but in the next section
)
if payment_request.success?
redirect_to PAYPAL_EXPRESS_GATEWAY.redirect_url_for(payment_request.token)
else
# Render something informal
render :text => payment_request.inspect.to_s and return
end
end
# POST /subscriptions/:id/confirm
# params having token and PayerID
def confirm
profile = PAYPAL_EXPRESS_GATEWAY.recurring(@subscription.price_in_cents, nil,
:description => 'Subscription agreement',
:start_date => Date.tomorrow, # PayPal throws an error if the date is not in the future
:period => 'Year',
:frequency => 1,
:amount => @subscription.price_in_cents,
:currency => 'CHF',
:initial_amount => @subscription.price_in_cents,
:auto_bill_outstanding => true,
:token => params[:token]
)
# profile has profile_id and profile_status. remember status because this gets updated via IPN.
@debug = {:params => params.inspect.to_s, :profile => profile.inspect.to_s }
# Render something informal
render :text => @debug.to_s and return
end
# implement instead of just log
def notification
log = Logger.new 'log/ipn.log'
log.debug params.inspect
render :text => params.inspect.to_s and return
end
# Private methods omitted
end
PaypalRecurringAPIとPaypalExpressGateway / PayPalGatewayを調べて、処理されるオプションとxmlリクエストの場所を確認する必要があります。
編集ペイパルと定期的な請求に関する新しい改訂されたスクリーンキャストは、別のペイパル定期的な宝石で行われます。ActiveMerchantで動作させることができない場合は、これが役立つかもしれません。