- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我想在我的 iOS 应用程序中集成 Braintree 支付。为此,我在 https://getcomposer.org/doc/01-basic-usage.md 之后安装了 composer .
composer 文件夹是在本地创建的,我已经把它放在我的服务器上。
但是当我运行 payAmountUsingBraintree.php
文件时,出现以下错误:
fatal error :找不到类“Braintree_Configuration”
payAmountUsingBraintree.php
的内容:
<?php
//include '../config.php';
include 'db_config.php';
require_once 'vendor/autoload.php';
//echo 'Current PHP version: ' . phpversion();
$PartnerId = $_POST["PartnerId"];
$nonce = $_POST["Nonce"];
$amount = $_POST["Amount"];
$fname = $_POST["fname"];
$lname = $_POST["lname"];
$SaveCard = $_POST["SaveCard"];
$number = $_POST["CardNumber"];
$postal_code = $_POST["postal_code"];
$CVV = $_POST["CVV"];
$MerchantAccountId = '';
$IsAvailable = 'no';
Braintree_Configuration::environment('sandbox'); // get error on this line
Braintree_Configuration::merchantId('2qyx6qtd9bvy82r');
Braintree_Configuration::publicKey('c9qvxk3nvhmd68b');
Braintree_Configuration::privateKey('6f8ca01bd95cc0c753e936148303de4');
我哪里错了?我该如何解决这个问题?
最佳答案
我知道有点晚了。但是让我为 future 的读者添加解决方案,他们可能正在寻找类似的解决方案,同时集成 PHP 技术来获取客户端 token 。
您需要先设置先决条件。
需要以下 PHP 扩展:
假设您已经在服务器上安装了依赖项。 BrainTree API 期望以下内容:
1) 一个开发者沙盒账户——创建一个 here
2) 应用程序中的 BrainTree 客户端框架——从 here 下载
快速入门示例
<?php
require_once 'PATH_TO_BRAINTREE/lib/Braintree.php';
Braintree_Configuration::environment('sandbox');
Braintree_Configuration::merchantId('your_merchant_id');
Braintree_Configuration::publicKey('your_public_key');
Braintree_Configuration::privateKey('your_private_key');
$result = Braintree_Transaction::sale([
'amount' => '1000.00',
'paymentMethodNonce' => 'nonceFromTheClient',
'options' => [ 'submitForSettlement' => true ]
]);
if ($result->success) {
print_r("success!: " . $result->transaction->id);
} else if ($result->transaction) {
print_r("Error processing transaction:");
print_r("\n code: " . $result->transaction->processorResponseCode);
print_r("\n text: " . $result->transaction->processorResponseText);
} else {
print_r("Validation errors: \n");
print_r($result->errors->deepAll());
}
声明 require_once 'PATH_TO_BRAINTREE/lib/Braintree.php';
在您的代码片段中丢失。
这里是解决方案的引用链接。
关于php - 布伦特里 iOS : fatal error 'Braintree_Configuration' not found,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29960332/
我是一名优秀的程序员,十分优秀!