希望一切都好 我感到困惑的是为什么我在我的localhost上运行ruby on rails的条带支付是c9.io帐户但是当我在Heroku中部署我的代码时,它给了我这个错误:
无法向没有有效卡的客户收费
我的orders.coffee文件:
jQuery ->
Stripe.setPublishableKey($('meta[name="stripe-key"]').attr('content'))
payment.setupForm()
payment =
setupForm: ->
$('#new_order').submit ->
$('input[type=submit]').attr('disabled', true)
obj = Stripe.card.createToken($('#new_order'), payment.handleStripeResponse)
alert(JSON.stringify(obj));
handleStripeResponse: (status, response) ->
if status == 200
$('#new_order').append($('<input type="hidden" name="stripeToken" />').val(response.id))
$('#new_order')[0].submit()
else
$('#stripe_error').text(response.error.message).show()
$('input[type=submit]').attr('disabled', false)
来自我的orders.coffee in localhost:
我的application.html.erb标题部分
<head>
<title>Estydemo</title>
<%= stylesheet_link_tag 'application', media: 'all'%>
<%= javascript_include_tag 'https://js.stripe.com/v2/', type: 'text/javascript' %>
<%= javascript_include_tag 'application' %>
<%= csrf_meta_tags %>
<%= tag :meta, :name=> 'stripe-key', :content => STRIPE_PUBLIC_KEY %>
</head>
my orders_controller.rb stripe section:
Stripe.api_key = ENV["stripe_api_key"]
#flash[:notice] = Stripe.api_key
#puts "stripe api key is " + Stripe.api_key
token = params[:stripeToken]
begin
customer = Stripe::Customer.create(
:source => token,
:description => "Customer.create"
)
charge = Stripe::Charge.create(
:amount => (@listing.price * 100).floor,
:description => 'charge.create',
:currency => "usd",
:customer => customer.id
)
flash[:notice] = "Thanks for ordering!"
rescue Stripe::CardError => e
flash[:danger] = e.message
end
我的application.js
// This is a manifest file that'll be compiled into application.js, which will include all the files
// listed below.
//
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
// or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
//
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
// compiled file.
//
// Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details
// about supported directives.
//
//= require jquery
//= require jquery_ujs
//= require bootstrap
//= require_tree .
我的条纹仪表板,我从heroku获取样本
有谁能让我知道为什么我有这么奇怪的问题? 左边一个来自heroku,右边一个来自localhost 如果需要更多信息,请将其提出。
答案 0 :(得分:3)
我认为在Heroku上进行测试时,您需要向新客户收费并且该客户没有任何卡默认活动。请在order_controller.rb
上创建费用之前添加创建新卡Stripe.api_key = ENV["stripe_api_key"]
#flash[:notice] = Stripe.api_key
#puts "stripe api key is " + Stripe.api_key
token = params[:stripeToken]
begin
customer = Stripe::Customer.create(
:source => token,
:description => "Customer.create"
)
card = customer.sources.create({:source => token})
charge = Stripe::Charge.create(
:amount => (@listing.price * 100).floor,
:description => 'charge.create',
:currency => "usd",
:customer => customer.id,
:source => card.id
)
flash[:notice] = "Thanks for ordering!"
rescue Stripe::CardError => e
flash[:danger] = e.message
end
答案 1 :(得分:3)
因此,此错误表示charge creation request(Stripe::Charge.create(...)
)失败,因为客户没有付款来源。
这反过来意味着当你created the customer时:
customer = Stripe::Customer.create(
:source => token,
:description => "Customer.create"
)
token
必须是nil
或空字符串,因此没有向Stripe发送source
参数。您可以通过查看Stripe仪表板中客户创建请求的日志条目来检查这一点。
这反过来意味着params[:stripeToken]
本身就是nil
或空字符串。
不幸的是,我不确定为什么会这样。我建议在CoffeeScript文件和Rails控制器的stripeResponseHandler
回调中添加一些日志,以检查令牌是否已成功创建并提交。
答案 2 :(得分:3)
我认为您的错误只是您创建了Stripe客户帐户并将令牌传递给客户,但未将令牌传递给实际的费用。这两种情况都需要这样做。 Stripe的许多用例可以用于创建订阅或稍后处理付款,这就是Customer Create将令牌存档的原因。但要创建费用,您还需要这样做。所以我会编辑代码以在Charge创建中包含令牌,如下所示:
编辑于11/03
实际上我继续将代码还原为你所拥有的代码。通过阅读API,我认为你可能能够以这种方式工作。也就是说,如果您打算创建一个可以在以后再次收费的客户。那么我认为的方向是它在本地工作但不在Heroku上工作。我认为这不是关于条纹代码,而是更多关于生产的变化。查看ENV变量并查看是否为开发和生产设置了它。但不仅如此,我还会预编译你的资产,因为当我从开发到生产时,Heroku往往会遇到CSS或jQuery的问题。运行RAILS_ENV=production bundle exec rake assets:precompile
,这应该可以解决问题,然后推送到掌握。
请参阅: https://devcenter.heroku.com/articles/rails-asset-pipeline
token = params[:stripeToken]
begin
customer = Stripe::Customer.create(
:source => token,
:description => "Customer.create"
)
charge = Stripe::Charge.create(
:amount => (@listing.price * 100).floor,
:description => 'charge.create',
:currency => "usd",
:customer => customer.id
)
flash[:notice] = "Thanks for ordering!"
rescue Stripe::CardError => e
flash[:danger] = e.message
end
如果您只想收取费用但不保留Stripe中的信息,您可以使用:
token = params[:stripeToken]
begin
charge = Stripe::Charge.create(
:amount => (@listing.price * 100).floor,
:currency => "usd",
:source => token,
:description => "Example charge"
)
flash[:notice] = "Thanks for ordering!"
rescue Stripe::CardError => e
flash[:danger] = e.message
end
编辑11/07 好的,在查看实际的回购时,我认为您遇到了问题,因为您没有必要的javascript调用来创建令牌。我会在这里引用Stripe Api: https://stripe.com/docs/stripe.js#collecting-card-details 并将其插入到orders.js文件中,但这取决于使用您用于创建订单的表单中的那些类命名的各种输入字段。我希望现在有助于指出你正确的方向。其他一切看起来应该是我能说的好。
Stripe.card.createToken({
number: $('.card-number').val(),
cvc: $('.card-cvc').val(),
exp_month: $('.card-expiry-month').val(),
exp_year: $('.card-expiry-year').val()
}, stripeResponseHandler);