1

Our business uses Adobe Scene7. One of the things we need to be able to do is share the URL of an image, to a vendor for all of the products with an image.

We have identified the construct of the URL to predict the link, and then we ping the image URL to ensure it is valid and available for viewing.

As of late, we've come into a problem where many of the images are not rendering...

Most images:

http://s7d5.scene7.com/is/image/LuckyBrandJeans/7W64372_960_1

Some images:

https://s7d9.scene7.com/is/image/LuckyBrandJeans/7Q64372_960_1

The only difference appears to be the s7d5 becomes s7d9 on some images. What drives that?

How do we get a list of all of those URL's if we can't predict the d9 vs d5?

4

2 回答 2

1

我不确定这是否重要。我认为你需要的只是文件名。看起来如果您采用文件名“7W64372_960_1”,它适用于 s7d5 和 s7d3:

http://s7d5.scene7.com/is/image/LuckyBrandJeans/7W64372_960_1 http://s7d9.scene7.com/is/image/LuckyBrandJeans/7W64372_960_1

其实你可以把它改成s7d1、s7d2、s7d3等,还是可以的。

所以,我认为如果你要构建某种模板,你可以选择你想要的任何 URL,然后在末尾附加文件名,例如:

http://s7d5.scene7.com/is/image/LuckyBrandJeans/ {{imageFileName}}

于 2018-09-19T15:52:33.470 回答
0

我们公司也有同样的情况。一个域为较低的“沙盒”环境 (d5) 提供图像,另一个域为您的实时环境 (d9) 提供图像。

于 2020-10-23T21:16:24.120 回答