我对bigcommerce API有疑问。当我更新产品或删除所有图像时,它工作正常。但是,这些方法需要很长时间才能加载并且无所事事。这是我的代码:
Bigcommerce_Api::configure(array(
'store_url' => $storeURL,
'username' => $APIuser,
'api_key' => $APIkey
));
Bigcommerce_Api::setCipher('RC4-SHA');
Bigcommerce_Api::verifyPeer(false);
$fields = array(
'name' => $data['title'],
'type' => 'physical',
'description' => $data['description'],
'price' => $data['price'],
'categories' => array(($catCreated ? $catID->id : $catObject[0]->fields->id)),
'availability' => 'available',
'weight' => '0.5',
'sku' => $data['sku'],
'search_keywords' => $data['tags']
);
Bigcommerce_api::updateProduct($id, $fields);
Bigcommerce_api::deleteProductImages($id);
问题出在哪里?为什么我不能一个接一个地做两种方法? 文档:https://github.com/bigcommerce/bigcommerce-api-php