skip to Main Content

Q: Get Item's Title Python eBay SDK – Ebay API

I am trying to get item's title with "GetSingleItem" method by providing the ItemID, but it does not work. Here is the code: from ebaysdk.shopping import Connection as Shopping api = Shopping(appid='&',certid='&',devid='&',token='&') ItemID=& a = print (api.execute('GetSingleItem',{'ItemID':ItemID,'IncludeSelector':['Title']})) print(a) The response:…

VIEW QUESTION

Accessing object element by index – Ebay API

I'm using eBay API which returns: DTSeBaySDKTypesRepeatableType Object ( [data:DTSeBaySDKTypesRepeatableType:private] => Array ( [0] => 60 ) [position:DTSeBaySDKTypesRepeatableType:private] => 0 [class:DTSeBaySDKTypesRepeatableType:private] => DTSeBaySDKShoppingTypesNameValueListType [property:DTSeBaySDKTypesRepeatableType:private] => Value [expectedType:DTSeBaySDKTypesRepeatableType:private] => string ) ... and if I try to access it like so:…

VIEW QUESTION
Back To Top
Search