从Braintree_PaymentMethod :: create调用中读取返回对象的正确方法是什么? 我想访问自动生成的令牌。
我目前正在这样做:
$result = $output->paymentMethod->_attributes['token']
我无法在Braintree文档中找到它。
答案 0 :(得分:3)
以下是演示如何从成功创建付款方式中检索令牌的代码段。
$result = Braintree_PaymentMethod::create(array(
'customerId' => 'existing-customer',
'paymentMethodNonce' => 'valid-nonce'
));
$token = $result->paymentMethod->token;