skip to Main Content

Ebay API: Failure, UUID required

I'm trying to get the active inventory for a client's Ebay store using the LMS Bulk Data Exchange API in Python. import requests token = "<user-token>" headers = {"X-EBAY-SOA-OPERATION-NAME":"startDownloadJob", "X-EBAY-SOA-SECURITY-TOKEN":token} r = requests.get('https://webservices.ebay.com/BulkDataExchangeService', headers = headers) print r.text The "user-token"…

VIEW QUESTION
Back To Top
Search