2016-04-15 7 views
3

В моем приложении я хотел бы добавить Марка и MPN для существующего пункта eBay с помощью API на C#, так что я запускаю код:Как добавить бренд в существующий элемент eBay?

 string eCommerceID = (dr["eCommerceID"] ?? "").ToString().Trim(); 
     string upc = (dr["UPC"] ?? "").ToString().Trim(); 
     string manufacturerName = (dr["ManufacturerName"] ?? "").ToString().Trim(); 
     string brandMPN = (dr["BrandMPN"] ?? "").ToString().Trim(); 

     ReviseItemRequestType reviseItemRequestType = new ReviseItemRequestType(); 
     reviseItemRequestType.Version = version; 
     reviseItemRequestType.Item = new ItemType(); 
     reviseItemRequestType.Item.ItemID = eCommerceID; 
     reviseItemRequestType.Item.ProductListingDetails = new ProductListingDetailsType(); 
     reviseItemRequestType.Item.ProductListingDetails.UPC = upc; 

     reviseItemRequestType.Item.ProductListingDetails.BrandMPN = new BrandMPNType(); 
     reviseItemRequestType.Item.ProductListingDetails.BrandMPN.Brand = manufacturerName; 
     reviseItemRequestType.Item.ProductListingDetails.BrandMPN.MPN = brandMPN; 

     ReviseItemResponseType reviseItemResponseType = ebayService.ReviseItem(reviseItemRequestType); 

, но когда я исполню этот код, eBay возвращает ошибку:

" Бренд, специфичный для позиции, отсутствует. Добавьте бренд в этот список, введите действительное значение и повторите попытку ».

Что я делаю неправильно?

Цените любую помощь. Благодарю.

enter image description here

Ошибка: enter image description here

ответ

4

В сообщениях об ошибках говорит:

The item specific Brand is missing

Не используйте Item.ProductListingDetails.BrandMPN в запросе. Вместо этого вам нужно будет создать два Item Specifics под названием Band и MPN.

<ItemSpecifics> 
    <NameValueList> 
     <Name>Brand</Name> 
     <Value>[BRAND VALUE]</Value> 
    </NameValueList> 
    <NameValueList> 
     <Name>MPN</Name> 
     <Value>[MPN VALUE]</Value> 
    </NameValueList> 
</ItemSpecifics> 
+0

это работает, спасибо! – ihorko

3

Вот копия пасты фрагмент кода раствора в C#.

ItemType itemType = new ItemType(); // = class eBay.Service.Core.Soap.ItemType 
Int32 condCodeAsInt = 1000; // upto you to derrive this from your use case. 
String myBrandValue = "Some BRAND"; 
String myMpnValue = "some MPN"; 
String myUpcValue = "Does not apply"; 

....

//if condition is "New" or "New with Details" then we need to set extra REQUIRED fields 

      if (condCodeAsInt == 1000 || condCodeAsInt == 1500) 
      { 

       //if it is "new" then remove inputted desc text completely REQUIRED 
       if (condCodeAsInt == 1000) 
       { 
        itemType.ConditionDescription = ""; 
       } 

       // set UPC value HERE, not in ItemSpecifics. 
       ProductListingDetailsType pldt = new ProductListingDetailsType(); 
       pldt.UPC = myUpcValue; 

       itemType.ProductListingDetails = pldt; 

       //init Item specifics (and set BRAND and MPN) 
       itemType.ItemSpecifics = new NameValueListTypeCollection(); 

       //brand 
       NameValueListType nvBrand = new NameValueListType(); 
       nvBrand.Name = "Brand"; 
       StringCollection brandStringCol = new StringCollection(); 
       brandStringCol.Add(myBrandValue); 
       nvBrand.Value = brandStringCol; 

       itemType.ItemSpecifics.Add(nvBrand); 

       //MPN 
       NameValueListType nvMpn = new NameValueListType(); 
       nvMpn.Name = "MPN"; 
       StringCollection mpnStringCol = new StringCollection(); 
       mpnStringCol.Add(myMpnValue); 
       nvMpn.Value = mpnStringCol; 

       itemType.ItemSpecifics.Add(nvMpn); 

      }