Google Search: ebay asp.net api soap wsdl [part deux]

Just following on from one of my previous post about using SOAP requests from ASP.Net to access Ebay.

I have finally worked out [it wasn't hard in the end] how to do it.

A few things that I had problems with were:

The Code Follows:

Ebay.eBayAPIInterfaceService service = new Ebay.eBayAPIInterfaceService();string appId = "APPID"; // use your app IDstring devId = "DEVID"; // use your dev IDstring certId = "CERTID"; // use your cert IDstring endpoint = "https://api.sandbox.ebay.com/wsapi";string callName = "GetSearchResults";string siteId = "0";

string version = "437";// Build the request URLstring requestURL = endpoint+ "?callname=" + callName+ "&siteid=" + siteId+ "&appid=" + appId+ "&version=" + version+ "&routing=default";// Create the service

// Assign the request URL to the service locator.service.Url = requestURL; //"https://api.sandbox.ebay.com/wsapi";// Set credentialsservice.RequesterCredentials = new Ebay.CustomSecurityHeaderType();

service.RequesterCredentials.eBayAuthToken = "MY_TOKEN"; // use your tokenservice.RequesterCredentials.Credentials = new Ebay.UserIdPasswordType();

service.RequesterCredentials.Credentials.AppId = appId;service.RequesterCredentials.Credentials.DevId = devId;service.RequesterCredentials.Credentials.AuthCert = certId;

Ebay.GetSearchResultsRequestType req = new Ebay.GetSearchResultsRequestType();

req.Query = "SSX";req.DetailLevel = new Ebay_Test.com.ebay.developer.DetailLevelCodeType[1];req.DetailLevel[0] = Ebay.DetailLevelCodeType.ReturnAll;

req.Version = version;

Ebay.GetSearchResultsResponseType resp = service.GetSearchResults(req);//Do some more stuff

I lead the Chrome Developer Relations team at Google.

We want people to have the best experience possible on the web without having to install a native app or produce content in a walled garden.

Our team tries to make it easier for developers to build on the web by supporting every Chrome release, creating great content to support developers on web.dev, contributing to MDN, helping to improve browser compatibility, and some of the best developer tools like Lighthouse, Workbox, Squoosh to name just a few.

I love to learn about what you are building, and how I can help with Chrome or Web development in general, so if you want to chat with me directly, please feel free to book a consultation.

I'm trialing a newsletter, you can subscribe below (thank you!)