编程语言
首页 > 编程语言> > php-如何测试Braintree交易退款?

php-如何测试Braintree交易退款?

作者:互联网

我正在尝试对Braintree交易退款进行测试,但遇到了问题. Braintree的API仅允许您为已结算的交易发出退款.但是,在沙盒环境中创建的事务每24小时仅“结算”一次.因此,当我尝试在测试套件中退款时,总是会拒绝退款,因为原始交易是“ submitted_for_settlement”而不是“已结算”.

可以解决吗?

解决方法:

我在Braintree工作.如果您还有其他问题,可以始终输入get in touch with our support team.

TestHelper in the Braintree PHP library提供了一种在沙箱中结算交易的方法:

class Braintree_TestHelper
{
    . . .

    public static function settle($transactionId)
        {
            $http = new Braintree_Http(Braintree_Configuration::$global);
            $path = Braintree_Configuration::$global->merchantPath() . '/transactions/' . $transactionId . '/settle';
            $http->put($path);
        }

    . . .
}

我们其他受支持的语言也存在类似的方法.

标签:braintree,phpunit,php
来源: https://codeday.me/bug/20191028/1955073.html