Как добавить несколько картинок в Python Ebay SDK

Вот моя установка:

Python 3.4

Использование Торгового API

Попытка вызвать eBay "VerifyAddItem"

Я отметил, где я получаю ошибку, в PicURLи я пытаюсь опубликовать несколько картинок с несколькими URL. Я сейчас просто пробую две картинки скажем http://i.ebayimg.com/picture1 а также http://i.ebayimg.com/picture2, (Я понимаю, что это не настоящие картинки, но это не часть моей проблемы)

Документация API eBay гласит To specify multiple pictures, send each URL in a separate, PictureDetails.PictureURL element. The first URL passed in will be the Gallery image and appears on the View Item page. Поэтому я попытался передать обе следующие строки безрезультатно:

"PictureDetails": {"PictureURL": ["http://i.ebayimg.com/picture1",
                                  "http://i.ebayimg.com/picture2"]}

а также

"PictureDetails": [{"PictureURL": "http://i.ebayimg.com/picture1"},
                   {"PictureURL": "http://i.ebayimg.com/picture2"}]

Я получаю следующие ошибки от eBay, соответственно:

VerifyAddItem: Class: RequestError, Severity: Error, Code: 37, Input data is invalid. 
Input data for tag <Item.PictureDetails.PictureURL[2]> is invalid or missing. Please 
check API documentation.

а также

VerifyAddItem: Class: RequestError, Severity: Error, Code: 37, Input data is invalid. 
Input data for tag <Item.PictureDetails[2].PictureURL> is invalid or missing. Please 
check API documentation.

К сожалению, у меня закончились идеи. Пожалуйста помоги! Вот полный словарь, не беспокойтесь о логике, так как я убедился, что все остальное работает нормально.

api = Trading(config_file="ebay.yaml", warnings=False)

    myitem = {
        "Item": {
            "Title": Title,
            "Description": Description,
            "PrimaryCategory": {"CategoryID": p.CategoryValue},
            "StartPrice": str(p.Price_sbox.value()),
            "CategoryMappingAllowed": "true",
            "Country": "US",
            "ConditionID": CatID,
            "ConditionDescription": p.CondDetail_tedit.toPlainText(),
            "Currency": "USD",
            "DispatchTimeMax": "1",
            "ListingDuration": "GTC",
            "ListingType": "FixedPriceItem",
            "PaymentMethods": "PayPal",
            "PayPalEmailAddress": PayPal,
            #############################
            ###This is where I get the Error
            #############################
            "PictureDetails": PicURL,
            "PostalCode": ZipCode,
            "Quantity": str(p.Quantity_sbox.value()),
            "ReturnPolicy": {
                "ReturnsAcceptedOption": "ReturnsAccepted",
                "RefundOption": "MoneyBack",
                "Description": "14 days money back, you pay return shipping",
                "ReturnsWithinOption": "Days_14",
                "ShippingCostPaidByOption": "Buyer" },
            "ShippingDetails": {
                "ShippingType": "Calculated",
                "PaymentInstructions": "1 business days of handling time, usually shipped next day. Make sure your address is correct, especially when shipping to foreign countries.",
                "ShippingServiceOptions": {
                    "FreeShipping": FreeShip,
                    "ShippingService": ShipService
                    },
                "CalculatedShippingRate": {"OriginatingPostalCode": ZipCode} },
            "ShippingPackageDetails": {
                "MeasurementUnit": "English",
                "WeightMajor": str(p.WeightLbs_sbox.value()),
                "WeightMinor": str(p.WeightOz_sbox.value()),
                "PackageDepth": str(p.DimensionH_sbox.value()),
                "PackageLength": str(p.DimensionL_sbox.value()),
                "PackageWidth": str(p.DimensionW_sbox.value()),
                "ShippingPackage": "PackageThickEnvelope"},
            "ShipToLocations": "Worldwide",
            "Site": "US",
            "SKU": p.ItemID_ledit.text() } }
    IntShip = []
    boolint = False
    if(p.IntShip1_chbox.isChecked()):
        IntShip.append('USPSPriorityMailInternational')
        boolint = True
    if(p.IntShip2_chbox.isChecked()):
        IntShip.append('USPSPriorityMailInternationalLargeFlatRateBox')
        boolint = True
    if(boolint):
        myitem['Item']['ShippingDetails']['ShippingServiceOptions']['InternationalShippingServiceOption'] = IntShip
    if(p.BestOffer_chbox.isChecked()):
        myitem['Item']['BestOfferDetails'] = {'BestOfferEnabled': 'true'}

    #print(myitem)
    api.execute('VerifyAddItem', myitem)
    print("%s" % api.response.content)

except ConnectionError as e:
    for node in api.response.dom().findall('ErrorCode'):
        print("error code: %s" % node.text)
    if 37 in api.response_codes():
        print("Invalid data in request")
    print(e)
    print(e.response.dict())

1 ответ

Решение

Ну ладно... я чувствую себя глупо... Так как я все еще работаю в песочнице, я передаю тестовые фотографии, где некоторые из URL-адресов в списке PicURL не указывать на действительное фото.

Если кто-то еще получит эти ошибки, первый формат будет правильным:

"PictureDetails": {"PictureURL": ["http://i.ebayimg.com/picture1",
                                  "http://i.ebayimg.com/picture2"]}
Другие вопросы по тегам