我是大商业的新手。
我正在尝试连接 Big-commerce 的 PHP API,下面是我的代码。
BigCommerce_Api::configure(array(
'store_url' => 'mystore url',
'username' => 'admin',
'api_key' => 'my apikey'
));
$ping = BigCommerce_Api::getTime();
if ($ping)
{
echo $ping->format('H:i:s');
}
else
{
echo "error in connection";
}
如果连接完成但出现错误,我会尝试显示时间。
我的代码有什么问题吗?
请帮我解决这个问题。