我正在尝试使用带有braintree dropin ui的activemerchant,但找不到正确的方法来创建要传递给javascript sdk的客户端令牌。我当前的设置是:
# config/environments/development.rb
# ActiveMerchant configuration.
ActiveMerchant::Billing::Base.mode = :test
config.gateway = ActiveMerchant::Billing::BraintreeGateway.new(
merchant_id: '',
public_key: '',
private_key: ''
)
我有一个控制器,需要作为api请求的一部分发送回客户端令牌:
# app/controllers/v1/orders_controller.rb
def token
@client_token = ...GENERATE CLIENT TOKEN...
respond_with @client_token
end
我只是不知道如何通过activemerchant api生成这个令牌。
最佳答案
我在Braintree工作。如果你有更多的问题,我建议你email our support team。
ActiveMerchant当前与V.Zero不兼容。要使用drop-in ui或任何其他v.zero特性,您需要直接使用braintree ruby客户端库。有关说明,请参见Braintree "Getting Started" Guide。