BigCommerce - 获取产品图片缩略图

时间:2013-12-17 23:57:25

标签: image api bigcommerce

我知道可以通过image API call获取image_file网址,但是可以检索图片缩略图的网址吗?

谢谢!

1 个答案:

答案 0 :(得分:1)

$.ajax(
{
    url: api path path here for image //like https://yourdomain.com/api/v2/products/id/images.json,
    method: 'GET',
    dataType: 'json',
    data: {is_thumbnail:true},
    beforeSend : function(req) 
    {
       req.setRequestHeader('Authorization', auth);
    },
    success: function(data, textStatus, jqXHR)                          
   {
       /*code after sucess here*/
   }
});

BC只有一个缩略图,因此它只返回一个图像。

我希望这会对你有所帮助

相关问题