我正在使用示例应用程序中的 PHP SDK 和“OneTimePayments”PHP 代码: https ://github.com/amzn/login-and-pay-with-amazon-sdk-samples/blob/master/PHP/SampleCartDemo/一次性付款/
在我使用的代码中:
- SetPaymentDetails.php 执行 Apcalls/GetDetails.php 来设置订单。
- ConfirmPaymentAndAuthorize.php 执行 Apcalls/ConfirmAndAuthorize.php 来处理订单。
在 GetDetails.php 和 ConfirmAndAuthorize.php 中都存在对响应的 PHP 引用。
$response = $client->setOrderReferenceDetails($requestParameters);
$response = $client->confirmOrderReference($requestParameters);
但是,我希望对 SetPaymentDetails.php 和 ConfirmPaymentAndAuthorize.php 中的响应有一个 PHP 引用。
在每种情况下,GetDetails.php 和 ConfirmAndAuthorize.php 都以 JSON 格式的响应回显完成,这些响应由调用 PHP 文件(SetPaymentDetails.php 或 ConfirmPaymentAndAuthorize.php)显示,使用:
<pre id="get_details_response"><div class="text-center"><img src="/images/ajax-loader.gif" /></div></pre>
<pre id="confirm"><code class="json"></code></pre>
<pre id="authorize"><div class="text-center"></div></pre>
其中“get_details_response”、“confirm”和“authorize”似乎是对响应的引用。
但是,我似乎无法在 PHP 代码中使用这些引用。
谁能告诉我如何在 SetPaymentDetails.php 和 ConfirmPaymentAndAuthorize.php 文件中获得对这些 JSON 响应的 PHP 引用?
谢谢你。