我目前正在尝试制作一个固定价格的"立即购买"按钮。
用户付款后,我想将他们重定向到根url,并向他们发送一封附有PDF文件的电子邮件。
我一直在研究如何使用贝宝创建一个简单的结账,但没有成功,我发现了一些已有多年历史的教程,其中一些代码已被弃用。
我尝试过使用BRAINTREE,它在测试/沙盒上运行得很好,但由于我目前住在波多黎各,我无法创建生产帐户(这限制了我对支付网关的选择(。
到目前为止我做了什么
遵循教程
我已经用name
和unit_price
为products
创建了一个支架
在我的product
模型中:
# This defines the paypal url for a given product sale
def paypal_url(return_url)
values = {
:business => YOUR_MERCHANT_EMAIL,
:cmd => '_cart',
:upload => 1,
:return => return_url,
:invoice => UNIQUE_INTEGER
}
values.merge!({
"amount_1" => unit_price,
"item_name_1" => name,
"item_number_1" => id,
"quantity_1" => '1'
})
# This is a paypal sandbox url and should be changed for production.
# Better define this url in the application configuration setting on environment
# basis.
"https://www.sandbox.paypal.com/cgi-bin/webscr?" + values.to_query
end
在教程中,他们说这应该足以处理付款,但他们要求点击"立即购买"链接,我不知道该将其指向何处或如何创建。
如果没什么好问的,有人能在这里给我指明正确的方向吗(一步一步->用贝宝轻松单次结账付款->文档(。
非常感谢。
编辑:
能够创建checkout
按钮:
<%= link_to 'checkout', product.paypal_url(products_url) %>
现在它起作用了,但我该怎么做才能让你用notice
重定向回我的网站?
谢谢!
好吧,经过一整天的研究和测试,我几乎把所有东西都做好了。以下是我所做的
步骤1
rails g scaffold product name:string unit_price:decimal
product
控制器:
def index
@products = Product.all
if @products.length != 0
@product = Product.find(1)
end
end
然后创建您的第一个产品
步骤2
在产品索引中,你可以放一个像这样的按钮,用于贝宝结账:
<%= link_to 'checkout', @product.paypal_url(payment_notification_index_url, root_url) %>
步骤3
在product
型号中
# This defines the paypal url for a given product sale
def paypal_url(return_url, cancel_return)
values = {
:business => 'your_sandbox_facilitato_email@example.com',
:cmd => '_xclick',
:upload => 1,
:return => return_url,
:rm => 2,
# :notify_url => notify_url,
:cancel_return => cancel_return
}
values.merge!({
"amount" => unit_price,
"item_name" => name,
"item_number" => id,
"quantity" => '1'
})
# For test transactions use this URL
"https://www.sandbox.paypal.com/cgi-bin/webscr?" + values.to_query
end
has_many :payment_notifications
您可以找到有关PayPal支付标准的HTML变量的更多信息
在这个代码中,对我来说最重要的是:
:return
买家完成付款后,PayPal将其浏览器重定向到的URL。例如,在您的网站上指定一个显示"感谢您的付款"页面的URL。
:notify_url
PayPal以即时支付通知消息的形式发布有关支付信息的URL。
:cancel_return
如果买家在完成付款前取消结账,PayPal会将其浏览器重定向到的URL。例如,在您的网站上指定一个显示"付款已取消"页面的URL。
和
:rm
返回方法。用于将数据发送到指定URL的FORM METHOD通过返回变量。允许值为:
0–所有购物车付款都使用GET方法
1–买家的浏览器通过使用GET方法,但不包括支付变量
2–买家的浏览器通过使用POST方法,并且所有支付变量都包括
步骤4
rails g controller PaymentNotification create
在这里你需要添加以下内容:
class PaymentNotificationController < ApplicationController
protect_from_forgery except: [:create]
def create
# @payment = PaymentNotification.create!(params: params, product_id: params[:invoice], status: params[:payment_status], transaction_id: params[:txn_id] )
@payment = PaymentNotification.create!(params: params, product_id: 1, status: params[:payment_status], transaction_id: params[:txn_id])
# render nothing: true
if @payment.status == 'Completed'
redirect_to root_url, notice: 'Success!'
else
redirect_to root_url, notice: 'Error'
end
end
end
步骤5
rails g model PaymentNotification
在这里添加以下
class PaymentNotification < ActiveRecord::Base
belongs_to :product
serialize :params
after_create :success_message
private
def success_message
if status == "Completed"
puts 'Completed'
...
else
puts 'error'
...
end
end
end
在路线中:
resources :payment_notification, only: [:create]
现在你应该能够通过贝宝进行完整的支付处理。
每次创建scaffold
和model
后,不要忘记rake db:migrate
。
另一件事是,为了获得自动重定向,你必须在贝宝的沙盒中指定url。点击此处了解
如果我忘记了什么,请告诉我,我已经工作了10多个小时才得到这个工作lol