skip to Main Content

Ebay API (convertedCurrentPrice) php

the following code behind the value of a product on Ebay dollar: echo $i['sellingStatus'][0]['currentPrice'][0]['__value__']; I'm trying to convert the currency Real (Brazil) as follows, but is not working: echo $i['sellingStatus'][0]['convertedCurrentPrice'][0]['BRL']['__value__']; Does anyone know where I am going wrong? The part…

VIEW QUESTION

eBay API aspectFilter with MaxPrice parameter returns 0 results

I am using the following URL to fetch car listing. But when I add the MaxPrice parameter It shows 0 items. But on the site there are 12 items that have price below my value. http://svcs.ebay.com/services/search/FindingService/v1?OPERATION-NAME=findItemsAdvanced&SERVICE-VERSION=1.12.0&SERVICE-NAME=FindingService&SECURITY-APPNAME=prosoftda-d112-4c99-9bec-8a09c902a7a&RESPONSE-DATA-FORMAT=JSON&paginationInput.entriesPerPage=50&categoryId=6001&outputSelector=PictureURLSuperSize&REST-PAYLOAD=true &aspectFilter(0).aspectName=Make&aspectFilter(0).aspectValueName=Audi &aspectFilter(1).aspectName=Model&aspectFilter(1).aspectValueName=Q7 &aspectFilter(2).aspectName=Model+Year&aspectFilter(2).aspectValueName=2013 &aspectFilter(3).aspectName=MaxPrice&aspectFilter(3).aspectValueName=50000.00…

VIEW QUESTION

ProductListingDetails null on eBay API GetItem Call

I've recently been working with the eBay API trying to get orders and their item details. In the API documentation it tells you you need to specify the DetailCodeType to get the ProductListingDetails. http://developer.ebay.com/devzone/xml/docs/Reference/eBay/GetItem.html The ProductListingDetails object contains Brand, Model,…

VIEW QUESTION

eBay Trading API additem call returns nothing, getting 'Undefined variable: response' error when loading page – Ebay API

I am trying to use addItem call to add a listing. Currently trying with sandbox credential received from eBay. I am using this tutorial to do this: https://github.com/cahudson/eBayCommerceCookbook/blob/master/1_3_presenting_products_through_ebay/addItem.php I have received key values correctly and set parameters also appropriately. When…

VIEW QUESTION

eBay API call not working for UPC/EAN

eBay's API findItemsByProduct operation would work on UPC and EAN. But unfortunately it is not working. The below HTTP GET request for example, throws an "Invalid product ID value." [error 41] http://svcs.ebay.com/services/search/FindingService/v1?SECURITY-APPNAME=MY-APP-ID-GOES-HERE&OPERATION-NAME=findItemsByProduct&SERVICE-VERSION=1.0.0&RESPONSE-DATA-FORMAT=XML&REST-PAYLOAD&productId.@type=EAN&productId=0016000275270&paginationInput.entriesPerPage=3 Note: Please replace the SECURITY-APPNAME's value with your…

VIEW QUESTION

Use of undeclared identifier 'cell' when parsing eBay API

I'm attempting to parse item data from eBay's API, however I'm having trouble getting the cells in my tableview setup properly. I'm getting multiple errors in the - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath method of my MasterViewController below stating that…

VIEW QUESTION
Back To Top
Search