1

我有一个应用程序成功地使用 Stripe 向用户收取访问应用程序的费用。在此基础上,我想在我的结账过程中实施 Plaid。由于这是我第一次实现 Stripe,而现在是我第一次使用 Plaid,我对方向以及如何推动这个特性有点迷茫。

我安装了plaid-ruby gem,并通过 figaro 添加了我的 Plaid secret_key 和 client_id 但现在我迷路了。

格子.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 创建充电?

4

1 回答 1

4

Plaid 有一篇关于如何连接它的文章——尽管提供的例子是在 Node.js 中——而且 Stripe 也有一个指南

也就是说,您需要在onSuccess处理程序中添加代码以将public_tokenand发送metadata.account_id到服务器的“令牌交换”端点,一旦获得,您可以将它们交换为Stripe 令牌,最后,您需要将该令牌附加到客户。

所以,像这样:

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().

于 2016-07-19T00:38:57.153 回答