skip to Main Content

Ebay API – How can use two namespaces in one file?

I am using SDK from http://devbay.net/sdk/guides/api/namespace-DTS.eBaySDK.html And I need use Finding and Trading services in one file. How can i declare different namespaces use DTSeBaySDKConstants; use DTSeBaySDKFindingServices; use DTSeBaySDKFindingTypes; use DTSeBaySDKFindingEnums; use DTSeBaySDKTradingServices; use DTSeBaySDKTradingTypes; use DTSeBaySDKTradingEnums; PHP Fatal error:…

VIEW QUESTION

getting all listings using GetSellerList – Ebay API

Currently I'm working eBay Trading APIs. I want to get all active listings but getting 194. I have 2269 active listings in my seller account. here is my code. $curl_resource = $this->initialize_requests("GetSellerList", false); $xmlStr="<?xml version="1.0" encoding="UTF-8"?> <GetSellerListRequest xmlns="urn:ebay:apis:eBLBaseComponents"> <RequesterCredentials> <eBayAuthToken>".$this->userToken."</eBayAuthToken>…

VIEW QUESTION

How to add images to existing item with ebay API

I am using ebay-sdk for python. I uploaded some images to eBay Picture Services(EPS) successfully using the below code: from ebaysdk.trading import Connection as Trading api = Trading(config_file='ebay.yaml', siteid=71) def upload_images(image_url): response = api.execute('UploadSiteHostedPictures', {"ExternalPictureURL": image_url, "PictureSet": "Supersize"}) return response.content…

VIEW QUESTION
Back To Top
Search