我有一个应用程序成功使用Stripe向用户收取访问应用程序的费用。基于此,我想在结帐过程中实现Plaid。由于这是我第一次实施Stripe,现在我第一次使用Plaid,我对方向以及如何推进此功能有点失落。
我安装了plaid-ruby gem,并通过figaro添加了我的Plaid secret_key和client_id,但现在我迷路了。
Plaid.rb:
Plaid.configuration.stripe = {
p.client_id = ENV['PLAID_CLIENT_ID'],
p.secret = ENV['PLAID_SECRET_KEY'],
p.env = :tartan # or :production
end
格子链接:
<button id='linkButton'>Open Plaid Link</button>
<script src="https://cdn.plaid.com/link/stable/link-initialize.js"></script>
<script>
var linkHandler = Plaid.create({
env: 'tartan',
clientName: 'ACCR',
key: '<<< MY_PUBLIC_KEY >>>',
product: 'auth',
selectAccount: true,
env: 'tartan',
onSuccess: function(public_token, metadata) {
// Send the public_token and account ID to your app server.
console.log('public_token: ' + public_token);
console.log('account ID: ' + metadata.account_id);
},
});
// Trigger the Link UI
document.getElementById('linkButton').onclick = function() {
linkHandler.open();
};
</script>
以下是我在Stripe的控制器中所拥有的内容:
def new
@stripe_btn_data = {
key: "#{ Rails.configuration.stripe[:publishable_key] }",
}
end
#1 Create a charge
customer = if current_user.stripe_id?
Stripe::Customer.retrieve(current_user.stripe_id)
else
Stripe::Customer.create(email: :stripeEmail)
end
current_user.update(
stripe_id: customer.id,
)
stripe_charge = Stripe::Charge.create(
customer: customer.id,
amount: (current_order.subtotal * 100).to_i,
currency: 'usd',
)
... more information to create an order then send email after charge.
我需要在控制器或其他地方包含什么才能通过Plaid和Stripe创建充电?
答案 0 :(得分:3)
Plaid有一个关于如何连接它的writeup - 尽管提供的示例是在Node.js中 - 并且Stripe也有guide。
也就是说,您需要在onSuccess
处理程序中添加代码,以便将public_token
和metadata.account_id
发送到您的服务器'token exchange' endpoint和一旦你有了这个,你可以用the Stripe token交换那些,最后,你需要将该令牌附加给客户。
所以,像这样:
plaid_user = Plaid::User.exchange_token(
public_token,
metadata_dot_account_id,
product: :auth
)
puts plaid_user.stripe_bank_account_token
customer = Stripe::Customer.retrieve("<customer-id>")
customer.sources.create({
:source => plaid_user.stripe_bank_account_token
})
然后你可以做Stripe::Charge.create()
。