For questions specific to the usage of the .NET version of eBay's Software Development Kit (SDK).
Questions tagged [ebay-net-sdk]
21 questions
3
votes
2 answers
eBay Finding API .NET SDK 'findItemsAdvanced' returns null response
I'm trying to use the eBay Finding API to send an advanced search request and return the results. I have included my code below.
For some reason when I get to the following line:
FindItemsAdvancedResponse response =…

Dan Harris
- 1,336
- 1
- 21
- 44
2
votes
1 answer
eBay Marketplace account deletion endpoint validation failed
Marketplace account deletion endpoint validation failed. Click here to learn more about setting up an endpoint.
I have created an API method to respond challenge response to eBay. But validation is failing I am not sure what wrong I am doing…

Sharad
- 1,192
- 1
- 8
- 20
1
vote
1 answer
eBay Trading API LeaveFeedbackCall
I am attempting to set seller feedback through the eBay Trading API, LeaveFeedbackCall. I am using the .NET SDK and am having difficulty assigning the feedback details. In the API description this is an array SelerItemRatingDetailsArray that holds…

DougM
- 109
- 3
- 16
1
vote
1 answer
.NET dll using different TLS versions
We have a Microsoft Access application that consolidates many of our activities on eBay. I do this through several com dll's that Access references. One part of the application posts listings from our inventory to eBay. This has been working for at…

DougM
- 109
- 3
- 16
1
vote
0 answers
What does the ?hash=item URL Param In eBay Sold URLS Mean?
Example of one ebay url:
https://www.ebay.com/itm/313606425313?hash=item4904664ae1:g:voUAAOSwP9BhH1Fj&var=612446123827
By the time you're reading this, the link may be dead.
But that's not the point, the point is what is the meaning of the…

rom
- 666
- 2
- 9
- 31
1
vote
0 answers
What information is required to ReviseItem on a variation? ebay sdk api
[EDIT] Instead of using ReviseItem I switched to ReviseInventoryStatus which is the correct method. Not sure why I have been using ReviseItem calls for the last few years. I am either dumb or some part of the api or docs changed and I never caught…

SmithBurger
- 61
- 5
1
vote
1 answer
eBay GetMyeBaySelling API call not returning specified fields only
I use eBay SDK 921 API with sandbox.
I want to get all my Items IDs (I have a lot of items and I want improve the performance), and I use this code:
GetMyeBaySellingCall apicall = new…

Abdoulah Al-Hlwani
- 13
- 3
1
vote
1 answer
eBay .NET SDK is causing my Cache and Session to be restarted
I am having all kinds of problems with the eBay .NET SDK (http://go.developer.ebay.com/developers/ebay/documentation-tools/sdks/dotnet)
Posted this question the other day:
HttpRuntime.Cache doesn't appear to be working
Now after a lot more…

Jamie Hartnoll
- 7,231
- 13
- 58
- 97
1
vote
1 answer
eBay API AddItem call returns "Domestic shipping is required if AutoPay is specified" error
I'm new to eBay's API, and I'm trying to make an AddItem call. However, I keep getting an error:
Domestic shipping is required if AutoPay is specified
I copied the code in line-for-line from the SDK example code and it compiles and runs just…

eckza
- 2,212
- 3
- 22
- 28
0
votes
1 answer
Need help converting this one line of code from vb .net 2005~ to vb .net 2010 (eBay .Net SDK)
Well, the eBay SDK has a pretty nice selection of examples, but they are outdated, most will not work and you get a NullReferenceException on the line. I was a Windows coder for about 5 years (5 years ago at that, and only know enough .Net to get me…

Mike L.
- 1,936
- 6
- 21
- 37
0
votes
0 answers
eBay API error: Authorization is throwing the following error....the provided authorization grant code is invalid or was issued to another client
var clientString = "" + ":" + "";
byte[] clientEncode = Encoding.UTF8.GetBytes(clientString);
var credentials = "Basic " + System.Convert.ToBase64String(clientEncode)
…

user2377154
- 3
- 5
0
votes
0 answers
EPID issue for AddFixedPriceItem
I'm trying to use AddFixedPriceItem to add listings to my eBay store. I'm including ProductListingDetails as follows:
{
IncludeeBayProductDetails = false,
IncludeeBayProductDetailsSpecified = true,
UseFirstProduct = true,
…

Matt James
- 109
- 2
- 8
0
votes
0 answers
How to add extra fields in eBay FeedAPI =>getResultFile
We are using eBay FeedAPI => getResultFile to download Inventories. We have successfully downloaded the file by using the TaskId. We need some extra fields along with default fields like Listing Title and UPC. How can we get this information in a…

Abu Sufyan
- 197
- 1
- 2
- 14
0
votes
2 answers
Ebay API bulkUpdatePriceQuantity for product variations
I have a product with some size-variations.
For example root item has sku 20159DA2 and children have for sku 20159DA2-S, 20159DA2-XS, etc
I want to call the method bulkUpdatePriceQuantity but it gives me Bad Request telling me the sku doesn't…

Martina
- 1,852
- 8
- 41
- 78
0
votes
0 answers
How do you add request headers to call wrapper instances in the ebay Trading Api sdk c#
I am struggling to find a way to extend http request headers in eBays TradingApi SDK (v1113). Specifically I am trying to implement the digital signature requirements mandated by the EU/UK. Where I need to add specific headers to some api…

jburns
- 49
- 5