skip to Main Content

eBay Finding API – Why are findItemsAdvanced JSON result elements all arrays? – Ebay API

When calling findItemsAdvanced with RESPONSE-DATA-FORMAT=XML, the results are as expected, e.g: <findItemsAdvancedResponse xmlns="http://www.ebay.com/marketplace/search/v1/services"> <ack>Success</ack> <version>1.13.0</version> <timestamp>2014-11-16T20:59:57.588Z</timestamp> <searchResult count="0"/> <paginationOutput> <pageNumber>0</pageNumber> <entriesPerPage>100</entriesPerPage> <totalPages>0</totalPages> <totalEntries>0</totalEntries> </paginationOutput> <itemSearchURL>http://www.ebay.co.uk/sch/i.html?_nkw=mytest1</itemSearchURL> </findItemsAdvancedResponse> But calling the same with RESPONSE-DATA-FORMAT=JSON, individual elements are all wrapped in []: {"findItemsAdvancedResponse":[…

VIEW QUESTION

XSL query for KeePass (Specific Entry) – Plesk

My target is to extract specific keys out of KeyPass(2.x) xml format by xsl. The KeyPass XML looks like this: <?xml version="1.0" encoding="utf-8" standalone="yes"?> <KeePassFile> <Meta> <Generator>KeePass</Generator> </Meta> <Root> <Group> <UUID>NqDrFtUxs0SiwVPehBpONg==</UUID> <Name>ExampleDatabase</Name> <Entry> <String> <Key>Notes</Key> <Value>Notes</Value> </String> <String> <Key>Password</Key> <Value…

VIEW QUESTION

"SSL certificate próblem" when conneting to eBay – Ebay API

I want to retrieve categories from ebay. This is my code: function getCategories(){ $endpoint = "https://api.ebay.com/ws/api.dll"; //$endpoint = 'http://svcs.ebay.com/services/search/FindingService/v1'; $api_dev_name = "XXX"; $api_app_name = "XXX"; $api_cert_name = "XXX"; $auth_token = "XXX"; $headers = array( 'X-EBAY-API-COMPATIBILITY-LEVEL: 819', 'X-EBAY-API-DEV-NAME: '.$api_dev_name, 'X-EBAY-API-APP-NAME: '.$api_app_name,…

VIEW QUESTION

ebay api not allowing me to store variation sku

Can anyone see why the code below only inserts the SKU for non variation SKU's? $client = new eBaySOAP($session); $params = array( 'Version' => $Version, 'DetailLevel' => "ItemReturnDescription", // 'GranularityLevel' => "Coarse", 'IncludeVariations' => "true", 'InventoryTrackingMethod' => "true", 'OutputSelector' =>…

VIEW QUESTION

PHP eBay Call Issues – Ebay API

Im trying to get the shipping info of a product, this is my code (I have hidden my app-id). $endpoint2 = "http://open.api.ebay.com/shopping"; $xmlrequest2 = "<?xml version='1.0' encoding='utf-8'?>n"; $xmlrequest2 .= "<GetShippingCostsRequest xmlns='urn:ebay:apis:eBLBaseComponents'>n"; // $xmlrequest2 .= "<DestinationCountryCode>GB</DestinationCountryCode>n"; // $xmlrequest2 .= "<IncludeDetails>true</IncludeDetails>n"; $xmlrequest2…

VIEW QUESTION
Back To Top
Search