0

我目前使用 Braintree 付款。我能够使用我的 iOS 在仪表板中创建成功的付款问题是我正在尝试将响应返回给客户端(iOS),现在它返回“”,提前感谢您的帮助。

我现在的 php

<?php
require_once("../includes/braintree_init.php");

//$amount = $_POST["amount"];
//$nonce = $_POST["payment_method_nonce"];
$nonce = "fake-valid-nonce";
$amount = "10";

$result = Braintree\Transaction::sale([
    'amount' => $amount,
    'paymentMethodNonce' => $nonce
]);

我的客户

URLSession.shared.dataTask(with: request as URLRequest) { (data, response, error) -> Void in
            // TODO: Handle success or failure
            let responseData = String(data: data!, encoding: String.Encoding.utf8)
            // Log the response in console
            print(responseData);

            // Display the result in an alert view
            DispatchQueue.main.async(execute: {
                let alertResponse = UIAlertController(title: "Result", message: "\(responseData)", preferredStyle: UIAlertControllerStyle.alert)

                // add an action to the alert (button)
                alertResponse.addAction(UIAlertAction(title: "OK", style: UIAlertActionStyle.default, handler: nil))

                // show the alert
                self.present(alertResponse, animated: true, completion: nil)

            })

            } .resume()
4

1 回答 1

1

全面披露:我在布伦特里工作。如果您还有其他问题,请随时联系支持人员

请记住,在响应中返回任何内容之前,PHP 代码会在您的服务器上进行评估。在这种情况下,Braintree\Transaction::sale调用会正确评估并将结果保存到您的$result变量中。但是,没有其他任何事情发生,并且您没有向请求者返回任何内容。

要返回响应,您只需将其打印出来。请注意,PHP 默认使用设置为“text/html”的 Content-Type 标头,因此如果您不想返回网页,您可能希望将其更改为“application/json”之类的内容,或其他最适合你。

$result = Braintree\Transaction::sale([
    'amount' => $amount,
    'paymentMethodNonce' => $nonce
]);

$processed_result = // you could serialize the result here, into JSON, for example
header('Content-Type: application/json');
print $processed_result;
于 2016-11-14T20:45:56.420 回答