Question by watchwhole1 · Apr 18 at 04:29 PM · addfixedpriceitemreviseitem.net sdk
Mix Of Self-Hosted And EPS Pictures Is Not Allowed
Hi, I'm using the following snippet to add a couple of photos to my items before using addFixedPriceItem :
item.PictureDetails = new PictureDetailsType();
item.PictureDetails.PictureSource = PictureSourceCodeType.Vendor;
item.PictureDetails.GalleryType = GalleryTypeCodeType.Gallery;
item.PictureDetails.PictureURL = new StringCollection();
for (int i = 0; i < shopifyProduct.Images.Count() && i < 12; i++)
{
var src = shopifyProduct.Images.ElementAt(i).Src;
item.PictureDetails.PictureURL.Add( src );
}
Once my items are pushed, i am not able to revise them anymore. As soon as i revise and want to save, I get an error that says "Mix of Self-Hosted and EPS pictures is not allowed". I did not upload anything to ebay, i simply provided URLs to images hosted on my own website. Why did ebay accept my products in the first place if they are not good? (1800 items already)... not how can i revise any item with that error?
Comment
Your answer
