Find the answer to your question
Advanced Search
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"