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

Ebay Find API parse error Document is empty, line 1

I'm trying to use FindingAPI but im getting this error on with PROD credentials. I think the problem is within the API. My code is just a simple: try: api = Connection(config_file='ebay.dev.yml', domain="api.ebay.com", debug=True,…
SHSHG
  • 3
  • 3
0
votes
1 answer

How to get a YAML file containing api keys to work in django?

I'm new to django and I am trying to make an API call to ebay when a user clicks a button, using ebay python SDK. There is a YAML file inside my project which contains the api keys. In my app, I have a python file that contains a function that makes…
0
votes
0 answers

How do I structure a project which uses django and ebay python sdk?

I am completely new to django and making non-static websites, so I'm sorry if this is a stupid question, but I couldn't find info anywhere on how to actually structure files for a django project. I built a program that scrapes data from one online…
0
votes
1 answer

How to get items by sku using sell API?

I'm working on ebay. I have created the application using sell api . I have fetched the Orders List using Postman. But when I try to fetch the items using SKU its giving me 500 [Internal Server error] . Although my request is complete and…
0
votes
1 answer

Passing HTML Template Code To Description in VerifyAddItem/AddItem - Error Code 20170

I am struggling to pass an HTML template into my Description tag for VerifyAddItem. Here is the error message I'm working with: ebaysdk [ERROR]:VerifyAddItem: Class: RequestError, Severity: Error, Code: 20170, Schema XML request error. Schema XML…
Omer Cohen
  • 11
  • 2
0
votes
1 answer

How do I find the Item ID for products on eBay?

I am trying to use eBay's RESTful Sell API and Buy API to make an order management application. To test the API calls, I have successfully created seller and buyer accounts. Further, I have uploaded some inventory from my sellers account and…
Kav
  • 21
  • 5
0
votes
1 answer

GetCategories ebay API call in django

i am stuck in getCateogory api call of ebay, given below is a django view which executes on a button click, i am getting desired output in backend on api call but it just returns a response as on…
0
votes
1 answer

ebay OAuth 2.0 library Cannot Resolve method initialize()

i wanted to write a bit for Android ebay client. but im struggeling with the first probleme. first i start a new Java Android Project with IntelliJ I want to use this Library ebay-oauth-android-client like described on Git: Obtaining Library This…
Geforcer
  • 3
  • 1
0
votes
1 answer

How to use python ebaysdk to filter items from a multi variation listing (listing of more than one item)

When I use the python finding sdk to search for listings with eBay, I usually get results that include a listing containing two or more items that I am not searching for. An example: request1 = { 'keywords': "Iphone x 64gb", # I am searching…
Lase
  • 27
  • 5
0
votes
3 answers

I am getting a Connection error when trying to use the eBay finding sdk with python

Recently, as I have tried to connect to make requests with the eBay finding SDK with python, I have been getting Connection errors. The error print does not state what is wrong. This is the python script I wrote to make API requests. from…
Lase
  • 27
  • 5
0
votes
2 answers

I am having issues with the eBay python sdk finding API

I am trying to work on a project which collects data on smart devices. I have decided to use the eBay python SDK rather than rely on web scraping. I am having a few issues When I make a request for a particular Item for example "iPhone x 64gb", I…
Lase
  • 27
  • 5
0
votes
1 answer

How to search for products by UPC using python bindings for Ebay's findItemsByProduct API?

I'm trying to find products by UPC using EBay's Product Find Items by Product ID, specifically using the Python bindings. I'm trying: api = Connection( appid='my id', config_file=None) response = api.execute('findItemsByProduct', { …
Allyl Isocyanate
  • 13,306
  • 17
  • 79
  • 130
0
votes
0 answers

Retreiving the specific field in ebaysdk

api = finding(appid=ID_APP, config_file=None, siteid=GLOBAL_ID) response = api.execute('findItemsAdvanced', {'keywords':search['search'], itemFilter':[ …
0
votes
1 answer

Ebay Integration with Python

I have to integrate my django project with Ebay. I have followed the SDK repository and set up an account on the developers forum as specified here Ebay SDK Repository for Python I tried to run the following function to add an item #!/usr/bin/env…
Megha Sirisilla
  • 151
  • 2
  • 12
0
votes
1 answer

eBay SDK get item in JSON using c#

need item in JSON using c# from ebay sdk here is python code which does the same thing import pyodbc import requests, json, re server=r"DRIVER={SQL Server Native Client 11.0};Trusted_Connection=yes; SERVER=WIN- JA0M2L5D05K\ECOM;DATABASE=ebay;…
kode sensei
  • 165
  • 1
  • 12