PaypalAdaptive を使用しています。ipn_notification を適切に送信します。ipnNotification アクション メソッドは次のとおりです。
def ipn_notification
ipn = PaypalAdaptive::IpnNotification.new
ipn.send_back(request.raw_post.to_json)
print "=====================request.raw_post#{request.raw_post}=============="
if ipn.verified?
PaymentMailer.notify_unknown(request.raw_post).deliver
else
logger.info "IT DIDNT WORK"
end
render :nothing => true
end
しかし、それはエラーを返しています
WARNING: Can't verify CSRF token authenticity rails
この問題のヘルプ。