Skip to main content
Published: June 28 2006, 12:00:00 AMUpdated: July 25 2022, 4:44:58 AM

Is there sample code on using GeteBayDetails with the .NET SDK?

Attached is a Visual Studio .NET 2008 command line project in VB.NET that shows how to make the GeteBayDetails call and process the ShippingDetailsList using eBay SDK v1131.0 for .NET

1. Before you build this sample project, please make sure to check that the project's reference to eBay.Service is valid
The path to this reference is D:\Program Files\eBay\eBay SDK v1131.0 for .NET\eBay.Service.dll in this sample.
If needed, remove the existing reference, and add the reference again pointing to whereever this file is on your computer.

2. Before you run the sample, you will need to fill in your information in place of the "xxx" in the following lines of source code:

' set the dev,app,cert information
oContext.ApiCredential.ApiAccount.Developer = "xxx"
oContext.ApiCredential.ApiAccount.Application = "xxx"
oContext.ApiCredential.ApiAccount.Certificate = "xxx"

' set the AuthToken
oContext.ApiCredential.eBayToken = "xxx"

Please note that the default API URL is set to Production:
oContext.SoapApiServerUrl = "https://api.ebay.com/wsapi"

 

How well did this answer your question?
Answers others found helpful