ActiveMerchant 获取 Braintree ClientToken
Posted
技术标签:
【中文标题】ActiveMerchant 获取 Braintree ClientToken【英文标题】:ActiveMerchant Get Braintree ClientToken 【发布时间】:2015-06-06 09:23:10 【问题描述】:我正在尝试将 ActiveMerchant 与 Braintree Dropin UI 一起使用,但我无法找到创建客户端令牌以传递给 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 生成这个令牌。
【问题讨论】:
【参考方案1】:我在布伦特里工作。如果您还有其他问题,我建议您email our support team。
ActiveMerchant 目前与 v.zero 不兼容。要使用 Drop-In UI 或任何其他 v.zero 功能,您需要直接使用 Braintree ruby 客户端库。有关说明,请参阅Braintree "Getting Started" Guide。
【讨论】:
非常感谢。这为我节省了很多时间拉头发,结果却以失望告终。将只使用 Braintree SDK。以上是关于ActiveMerchant 获取 Braintree ClientToken的主要内容,如果未能解决你的问题,请参考以下文章
使用 Bundler 加载 activemerchant 时出现问题