ebay-api

How to get JSON information from ASP.NET core web app using JavaScript

故事扮演 提交于 2019-12-11 19:36:38
问题 I've been using eBay finding API for some time, it worked at as it supposed to, I've implemented it with JavaScript like shown in they'r documentation. and recently, out of nowhere it stopped working, I have no Idea whats the problem.. I checked same call using postman, everything works there. Also it works when I make same call in php or in C#, So I thought maybe eBay did something and I can only get info from "backend" language :/? IDK.. So I've created a link that gets info from eBay ant

eBay Finding API findItemsByKeywords returns 'Input URL gave a value for header X-EBAY-SOA-OPERATION-NAME but has a conflicting mapped value' error

我是研究僧i 提交于 2019-12-11 11:52:51
问题 I'm trying to make a call in to eBay's Finding API via GET in the URL bar, and i get these errors(XML): <errorMessage xmlns="http://www.ebay.com/marketplace/search/v1/services"> <error> <errorId>2033</errorId> <domain>CoreRuntime</domain> <severity>Error</severity> <category>Request</category> <message> Input URL gave a value for header X-EBAY-SOA-OPERATION-NAME equal to findItemsByKeywords but has a conflicting mapped value, findItemsByKeywords </message> <subdomain>Inbound_Meta_Data<

eBay SDK AddItem new ProductDetails EAN Requirements CANNOT List Or Revise

本秂侑毒 提交于 2019-12-11 10:42:07
问题 I've asked this question on an eBay forum already, but you have been very helpful, so probably worth posting here too. Over the past few days I have realised that for many categories in which I sell, EANs are becoming required. I have been trying to update my eBay integration to take this into account, but have run into problems. The additions to my code provide a workflow, and have problems as follows: I sell musical instruments and accessories, so let's take a typical example a product

eBay Trading API getOrders: check if order is marked as shipped

大兔子大兔子 提交于 2019-12-11 07:26:47
问题 I want to get all orders from my ebay seller account. Using the GetOrders call works fine. All of my orders are marked as ACTIVE or COMPLETE depending on the status of the order. But when I mark them as shipped (through API or on the website) the orders stay ACTIVE or COMPLETE after re-crawling. I expected the order status' to be SHIPPED . I use the eBay Java SDK Version 797 every API call returns "Success" How do I figure out if an order is marked as shipped? Does this depend on the country?

eBay API CompleteSale call for multiple items

萝らか妹 提交于 2019-12-11 03:55:17
问题 Currently I have a system which retrieves a list of orders from eBay (using the GetOrders API call) to do some processing. System will display the list of orders for users to check to update status to Shipped (using CompleteSale API call). The problem I am having now is that the process of updating the status using the API is kind of slow because the CompleteSale is being called for each order (possible that user check 1000 records to update status to Shipped at one time). Is it possible to

How to properly call the eBay Trading API and display the results [closed]

北城余情 提交于 2019-12-11 03:41:38
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 5 months ago . I am attempting to build a tool for use at my work that compares some very simple data. All of the data is available through the eBay trading API via the GetItem call. In the Trading API guide from the eBay Developer website the sample input and output code to make the GetItem

Deep link into eBay iOS app with custom URL scheme?

廉价感情. 提交于 2019-12-11 02:39:43
问题 In my app, I’d like a way to open the eBay application on a customer’s iOS device (if they have that app installed), and perform a search with a term I specify. I’ve noticed that opening an eBay:// URL does indeed open the app, but I can’t find any API documentation on eBay’s developer portal discussing what I’d like to do. Has anyone done this? Any idea what the rest of the URL would need to be in order to simply perform a search in the app with a given term, and perhaps some specified

eBay XML API returns 'Invalid job context type' error

女生的网名这么多〃 提交于 2019-12-10 21:05:19
问题 I am developing eBay manager that is almost completed. Everything is running fine, like posting of data, getting order details from eBay. Now I need to update the status of Shipping Tracking numbers, Carrier on eBay. Here I am getting error and I can't figured out what is the problem. Any help in this regards will be highly appreciated. Help Reference: http://developer.ebay.com/DevZone/XML/docs/Reference/eBay/CompleteSale.html Error response: <?xml version="1.0" encoding="UTF-8"?>

How to get PayPal TransactionID via eBay API

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-10 15:55:48
问题 I need to get PayPal TransactionID of the paid order on eBay via API. I use ExternalTransaction like described here: https://ebay.custhelp.com/app/answers/detail/a_id/1550/~/linking-ebay-and-paypal-transactions ExternalTransactionType[] externalTransactionTypeArr = transactionType.ExternalTransaction; but eBay API always returns null as transactionType.ExternalTransaction Any suggestions? Thanks! 回答1: You need to set the Attribute "DetailLevel" to the value "RETURN_ALL". 来源: https:/

eBay SOAP API - Missing SOA operation name header

江枫思渺然 提交于 2019-12-08 07:50:56
问题 I am trying to invoke eBay's findItemsByKeywords method and I get Server raised fault: 'Missing SOA operation name header' My code is following: from config import * # url = 'http://developer.ebay.com/webservices/latest/ebaySvc.wsdl' # url = 'http://svcs.ebay.com/services/search/BestMatchItemDetailsService/v1?wsdl' url = 'http://developer.ebay.com/webservices/finding/latest/FindingService.wsdl' from suds.client import Client import logging logging.basicConfig() client = Client(url) from suds