Questions tagged [ebay-sdk]

For questions relating to eBay's Software Development Kit (SDK). When using this tag also provide the appropriate language tag, such as; python, java, etc.

112 questions
0
votes
1 answer

Getting store id from ebay api

I can get orders of any users using oauth2 via ebay api. When users authorize our app to connect and get his orders , I add a new record including access key and refresh token to my db . But when this user re-authorize our app , a new record which…
Mustafa
  • 85
  • 4
0
votes
2 answers

eBay GetMyeBaySellings No XML or was found in XML Request

I want to use the eBay-API to get my sold items. Here is my code: ApiContext apiContext = new ApiContext(); ApiCredential credential = apiContext.getApiCredential(); ApiAccount acc = new…
ItFreak
  • 2,299
  • 5
  • 21
  • 45
0
votes
1 answer

getting ebay sdk business policies

I am new in eBay SDK and eBay trading API. How can I get all business policies(payment, shipping, and return policies) by using API or SDK? I looked into the documentation but no luck yet.
hma
  • 556
  • 2
  • 11
  • 29
0
votes
1 answer

Exception: Unable to serialize node of type on calling getuser in ebay-sdk python

I am using ebay-sdk Python usage documentation. I get this error Exception: Unable to serialize node of type ({'genuinefeatherbuys2011'}) Here is my code (I replaced some data with 'x') from ebaysdk.trading import Connection as…
tarek hassan
  • 772
  • 11
  • 35
0
votes
1 answer

Finding items with eBay PHP SDK does not return seller info

I'm using David Sadler's PHP eBay SDK to integrate eBay in a PHP test application. Using the $service->findItemsByKeywords, the result does have itemId, title and sellingStatus but not Seller information…
Ederico Rocha
  • 250
  • 4
  • 10
0
votes
1 answer

How to install EbaySDK on python on Mac

I'm trying to install EbaySDK for Mac using Python but its not working. I have tried to follow this, but doesn't seem like I can use yum or apt-get for Mac. I also tried to use PIP but apparently need BeautifulSoup4 and it fails: followed…
0
votes
1 answer

eBay SDK and Affiliate

I'm tryng to add the affiliate parameter to my script to find items on ebay but I don't understand where I can put affiliate trackingId etc I'm trying to add affiliate campaign id after the service request $service = new Services\FindingService but…
junkfood
  • 41
  • 1
  • 11
0
votes
1 answer

eBay API GetOrders How to get the shipping cost that the seller paid

So every time I make this call to the API, every order has a ShippingServiceSelected.ShippingServiceCost.value Is always 0 for every order. I am guaranteed that every order had shipping bought through eBay because they are the items I sold. I am on…
Gorlan
  • 115
  • 1
  • 9
0
votes
2 answers

Q: Get Item's Title Python eBay SDK

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 =…
m2bb
  • 1
  • 2
0
votes
1 answer

Error 16112 - How to connect to Ebay without interactivity?

So, I'm trying to use the ebaysdk-python module, to connect to ebay and get a list of orders. After struggle a little bit with the connection, I've finally have found the ebay.yaml syntax. I have then configured the user and password, but I'm…
Walter_Ritzel
  • 1,387
  • 1
  • 12
  • 16
0
votes
1 answer

ebaysdk: findCompletedListing does not return consistent results

I'm new to the eBay API, but I'm trying to use it to look at completed auctions. I found the Python package ebaysdk and have the most recent version installed and working. However, if I run the query and get back the results, and then run it…
CurtLH
  • 2,329
  • 4
  • 41
  • 64
0
votes
1 answer

eBay Trading API GetSellingManagerSoldListing request returns no SalesRecord results

I am using eBay's Java SDK for my current project and we need to do various tasks via eBay API. A lot of the API calls are working fine. However, the GetSellingManagerSoldListings request is not returning sold histories at all, even though the call…
BioHazard
  • 73
  • 1
  • 10
0
votes
1 answer

Get sold items from Ebay SDK Selling - getting "Missing required input element" Error

I cant create a tag for EbaySDK, so Ebay API may be misleading. The SDK reference is below. Why do some requests require "input" and where can they be found? The SDK notes don't seem clear on whats required per "call type". Following the examples…
zzipper72
  • 945
  • 2
  • 10
  • 24
0
votes
1 answer

ebay-sdk-php notification handling

I'm using the https://github.com/davidtsadler/ebay-sdk-php, the unofficial PHP SDK for eBay. I've been going around in circles with notifications, particularly 'FixedPriceTransaction' notifications. I've managed to subscribe to the notifications and…
jdawg
  • 508
  • 2
  • 5
  • 18
0
votes
1 answer

eBay Trading API returns 'ISBN is missing a value' error

I am using eBay Trading API to sell products on eBay. $service = new Services\TradingService(array( 'apiVersion' => $config['tradingApiVersion'], 'sandbox' => $config['sandbox'], 'siteId' =>…
Shijin TR
  • 7,516
  • 10
  • 55
  • 122