0

我是大商业的新手。

我正在尝试连接 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";
}

如果连接完成但出现错误,我会尝试显示时间。

我的代码有什么问题吗?

请帮我解决这个问题。

4

1 回答 1

3

默认情况下生成的 URL 看起来像https://uniquestoreid.mybigcommerce.com/api/v2/,当使用 BigCommerce APIapi/v2从 URL 中删除时,您的配置应该如下所示:

BigCommerce_Api::configure(
    array(
        'store_url' => 'https://uniquestoreid.mybigcommerce.com',
        'username'  => 'username',
        'api_key'   => 'longtokenstring'
    )
);
于 2012-11-07T17:57:12.223 回答