我已经下载了 bigcommerce API 并使用 get time 示例创建了一个测试脚本。我得到一个空白的响应并且没有错误:
我的测试代码只是:
<?php
require 'bigcommerce.php';
use Bigcommerce\Api\Client as Bigcommerce;
Bigcommerce::configure(array(
'store_url' => 'https://storeurl.mybigcommerce.com',
'username' => 'apiusername',
'api_key' => 'token'
));
Bigcommerce::setCipher();
Bigcommerce::verifyPeer(false);
$ping = Bigcommerce::getTime();
if ($ping) echo $ping->format('H:i:s');
?>
你能帮忙解释为什么结果是空白的吗?