我是靠谱客的博主 活泼保温杯,最近开发中收集的这篇文章主要介绍php沙盒测试,php - Braintree沙盒测试(假nonce) - 堆栈内存溢出,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

我正在测试Braintree沙箱(PHP),即使我使用假nonce,交易仍然显示有效

我有一个dropin前端和一个PHP后端

我的后端测试代码如下所示:

$amount = '12.00';

$nonce = 'fake-processor-declined-visa-nonce';

$result = Braintree_Transaction::sale(['amount' => $amount,

'paymentMethodNonce' => $nonce,

'options' => ['submitForSettlement' => true]

]);

$debug = get_object_vars($result);

print_r($debug);

结果

Array

(

[success] => 1

[transaction] => BraintreeTransaction Object

(

[_attributes:protected] => Array

(

[id] => 9bnyb32r

[status] => submitted_for_settlement

[type] => sale

[currencyIsoCode] => EUR

[amount] => 12.00

[merchantAccountId] => somenamehere

[subMerchantAccountId] =>

[masterMerchantAccountId] =>

[orderId] =>

[createdAt] => DateTime Object

我发现假冒的nouces是为了测试沙盒中的错误结果......或者我错过了什么

最后

以上就是活泼保温杯为你收集整理的php沙盒测试,php - Braintree沙盒测试(假nonce) - 堆栈内存溢出的全部内容,希望文章能够帮你解决php沙盒测试,php - Braintree沙盒测试(假nonce) - 堆栈内存溢出所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(43)

评论列表共有 0 条评论

立即
投稿
返回
顶部