ebay-api

How to fetch Items By SKU on ebay using Sell API [REST]?

五迷三道 提交于 2021-02-08 11:47:18
问题 I have created the Sell Application using Sell API. I have fetched the Orders List using Postman. But when I try to fetch the items using SKU BY using this API call https://developer.ebay.com/api-docs/sell/inventory/resources/inventory_item/methods/getInventoryItem .its giving me 500 [Internal Server error] .& Also when i try to get inventory items using this API call: https://api.ebay.com/sell/inventory/v1/inventory_item? for getting inventory. It also gives me 500 [ internal server error ].

Google Sheet importxml login access

随声附和 提交于 2021-02-05 09:41:59
问题 I've used importxml to get public info from a website. But sometimes info changed when we access though different country. For example http://www.ebay.com/itm/221998403138?_trksid=p2057872.m2749.l2649&var=520870142881 this item is not available in USA but when we'll access from different country where seller shipped or changed the country of shipping, we can find the shipping cost. If I use importxml from Google Sheet, that means the access country will be USA. How far I understand i can't

Google Sheet importxml login access

让人想犯罪 __ 提交于 2021-02-05 09:41:38
问题 I've used importxml to get public info from a website. But sometimes info changed when we access though different country. For example http://www.ebay.com/itm/221998403138?_trksid=p2057872.m2749.l2649&var=520870142881 this item is not available in USA but when we'll access from different country where seller shipped or changed the country of shipping, we can find the shipping cost. If I use importxml from Google Sheet, that means the access country will be USA. How far I understand i can't

Could not initialize class com.ebay.sdk.SdkAPIInterfaceServiceLocator JAVA

雨燕双飞 提交于 2021-01-29 09:19:48
问题 I am using Java eBay SDK, and I am trying to call addItem API, I added eBay maven dependency and repository and wrote a simple application that adds a new Item . The main is as shown below: public static void main(String[] args) { App aai = new App(); try { ItemType item = aai.buildItem(); FeesType fees; AddItemCall call = new AddItemCall(aai.apiContext); call.setItem(item); call.setAutoSetItemUUID(true); fees = call.addItem(); } catch (Exception e) { e.printStackTrace(); } } I keep getting

Capture python value from multi-nested dictionary

自作多情 提交于 2021-01-29 07:10:22
问题 I'm having some problems obtaining a variable from a multi-nested dictionary. I'm trying to grab CategoryParentID with the following snippet: print dicstr['CategoryParentID'] while my dictionary looks like this: { "CategoryCount": "12842", "UpdateTime": "2018-04-10T02:31:49.000Z", "Version": "1057", "Ack": "Success", "Timestamp": "2018-07-17T18:33:40.893Z", "CategoryArray": { "Category": [ { "CategoryName": "Antiques", "CategoryLevel": "1", "AutoPayEnabled": "true", "BestOfferEnabled": "true"

eBay 'Get Inventory Items' API NOT returning items

橙三吉。 提交于 2021-01-21 09:18:06
问题 I am trying to call this API with my eBay user auth token on the eBay API Explorer: https://api.ebay.com/sell/inventory/v1/inventory_item The Headers: Authorization:Bearer [MY_EBAY_SELLER_USER_TOKEN] Accept:application/json Content-Type:application/json Now I'm receiving this in response: { "total": 0, "size": 0 } Now I definitely have some items listed for sale and they are showing up on eBay. I also made sure that I am in production mode and that my auth token is also a production token.

eBay 'Get Inventory Items' API NOT returning items

非 Y 不嫁゛ 提交于 2021-01-21 09:17:30
问题 I am trying to call this API with my eBay user auth token on the eBay API Explorer: https://api.ebay.com/sell/inventory/v1/inventory_item The Headers: Authorization:Bearer [MY_EBAY_SELLER_USER_TOKEN] Accept:application/json Content-Type:application/json Now I'm receiving this in response: { "total": 0, "size": 0 } Now I definitely have some items listed for sale and they are showing up on eBay. I also made sure that I am in production mode and that my auth token is also a production token.

eBay 'Get Inventory Items' API NOT returning items

醉酒当歌 提交于 2021-01-21 09:15:59
问题 I am trying to call this API with my eBay user auth token on the eBay API Explorer: https://api.ebay.com/sell/inventory/v1/inventory_item The Headers: Authorization:Bearer [MY_EBAY_SELLER_USER_TOKEN] Accept:application/json Content-Type:application/json Now I'm receiving this in response: { "total": 0, "size": 0 } Now I definitely have some items listed for sale and they are showing up on eBay. I also made sure that I am in production mode and that my auth token is also a production token.

Querying eBay API with WCF

孤者浪人 提交于 2021-01-04 12:28:50
问题 I'm trying to work with the eBay API in my ASP.NET Core 2.0 website. eBay's .NET SDK doesn't work with .NET Core, so I have the service added through WCF. I'm brand new to WCF and I can't get this client to work though. No matter what I try I'm getting this error: Exception thrown: 'System.ServiceModel.FaultException' in System.Private.CoreLib.dll com.ebay.app.pres.service.hosting.WebServiceDisabledException: The web service eBayAPI is not properly configured or not found and is disabled. I'm

Querying eBay API with WCF

萝らか妹 提交于 2021-01-04 12:27:38
问题 I'm trying to work with the eBay API in my ASP.NET Core 2.0 website. eBay's .NET SDK doesn't work with .NET Core, so I have the service added through WCF. I'm brand new to WCF and I can't get this client to work though. No matter what I try I'm getting this error: Exception thrown: 'System.ServiceModel.FaultException' in System.Private.CoreLib.dll com.ebay.app.pres.service.hosting.WebServiceDisabledException: The web service eBayAPI is not properly configured or not found and is disabled. I'm