使用PHP从BigCommerce API获取图片网址

问题描述:

有人可以帮助我用PHP检索BigCommerce产品的图像URL吗?我尝试使用Bigcommerce :: getProductImages($ product-> id);但这没有帮助.我希望该API能够更新为最新版本.请提出一个确切的解决方案.预先感谢.

Can anybody help me to retrieve Image URL for a BigCommerce Product in PHP? I tried with Bigcommerce::getProductImages($product->id); but it doesn't helps. I hope the API gets updated in latest version. Pls suggest an exact solution. Thanks in advance.

在迭代产品时,您可以获取产品ID并在其中循环:

when iterating thru products you can grab the product ID and loop through this:

$images = BigCommerce_Api::getCollection('/products/'.$productID.'/images');

    foreach($images as $image) {
        $curImage=$image->image_file;
            echo '<img src="'.$storeURL.'/product_images/'.$curImage.'"/>';
        }

希望这会有所帮助