使用Bigcommerce API创建类别时不会创建图像

时间:2018-04-10 05:59:13

标签: bigcommerce

我正在开发Bigcommerce项目以导入类别。但在Bigcommerce中我们没有直接导入选项,因此我使用Category API V3在Bigcommerce上创建类别。 该类别已成功创建。已创建图片的bigcommerce CDN网址,但图片未显示在bigcommerce网站上。

仅供参考 - 我使用的是Bigcommerce API V3

请查找API调用和API结果。抱歉错位。

Bigcommerce API Call

Result Information

请在下面找到编码。

$fields = array("parent_id" => "27","name" => "category3","description" => "test description","image_url" => "https://imageurl/yhst-130038008324021_2510_1762695707");

$fields = json_encode($fields);

$api_url = 'https://api.bigcommerce.com/stores/storehash/v3/catalog/categories';

$ch = curl_init(); 
curl_setopt( $ch, CURLOPT_URL, $api_url );
curl_setopt($ch, CURLOPT_TIMEOUT, 100); 
curl_setopt( $ch, CURLOPT_HTTPHEADER, array ('X-Auth-Client: client id','X-Auth-Token: auth token','Accept: application/json', 'Content-Type: application/json') );        
curl_setopt( $ch, CURLOPT_CUSTOMREQUEST, 'POST'); 
curl_setopt( $ch, CURLOPT_SSL_VERIFYPEER, 0 ); 
curl_setopt( $ch, CURLOPT_POSTFIELDS, $fields);
curl_setopt( $ch, CURLOPT_USERPWD, "username:password" ); 
curl_setopt( $ch, CURLOPT_SSL_VERIFYHOST, 0 );
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, 1 );   
$response = curl_exec($ch);   
$result = json_decode($response); 

1 个答案:

答案 0 :(得分:0)

这实际上是我们的问题。我们已经筹集了一张内部工程票来解决它,我们希望尽快推出修复程序。修复程序推出后,我会在此更新您的信息。