ebay

how to use ebay api for particular search results?

I have a php website in which i want to add ebay api such that when a user searches for any car or by text cars he can be able to see cars listed in ebay for sale. and user must not be able to search anything except cars and different brands of cars. Please Tell me how can i achieve this... Thanks in advance........ ...

Feedback system like Ebay but for events: DB schema

I'm creating a feedback system kind of like Ebay. (Once you buy the item you can then leave feedback upon its purchase) But instead of products its events (partys, meetings). Users can attend the event and then only the users that confirmed their attendance can leave feedback once the event is finished (known by an event_over boolean). ...

help me to find ebay sellers information

Hi, how to fetch ebay sellers location using ebay api in php.. thanks, jitendra ...

I would like to grab ebay listings from a competitor

I am trying to grab ebay listings from competitors. I need the individual components dropped into an excel spreadsheet. I have a good portion of the template that I need to populated. ...

ebay API need a quick solution

I need to know how to buy an item using ebay API. Here is the reference http://developer.ebay.com/DevZone/XML/docs/Reference/eBay/PlaceOffer.html but I dont have a clue how to do that. What I have is the item ID from ebay in my database table ebay_items having column item ID. please tell me step by step how to do that and any help will b...

Using the .NET Ebay Finding API / SDK how do I do a search successfully?

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 = service.findItemsAdvanced(request); the object called "response" is coming back as null. I'm not sure where I'm going ...

eBay JavaScript API - @ symbol in object member name

I am using the eBay JavaScript Finding API. The currency id member of the findItemsAdvancedResponse object is defined as @currencyId. So I am retrieving this value as: function _cb_findItemsAdvanced(root) { var items = root.findItemsAdvancedResponse[0].searchResult[0].item || []; var html = []; if (items.length == 0) { ...

Can Ebay Finding API search by Category?

Hi, Is it possible to search by category using the Ebay Finding API? If not do I need to use a different API? I am doing this using C# and can't find any examples of searching by category ...

ebay api buying item through iphone sdk

I want to give facility of buying items from ebay but I am not getting which ebay api i have to use for buying with iphone sdk? ...

Problem assigning to findItemByCategoryRequest.outputSelector[] using Ebay .NET API

I'm trying to assign a value with code like the following: findItemByCategoryRequest r = new findItemByCategoryRequest() r.outputSelector = outputSelectorType.SellerInfo ........etc However I am getting an error when I try to build: "Cannot implicitly convert type 'FinalEbayParser.com.ebay.developer.OutputSelectorType' to 'FinalEbay...

fileNotFoundException when pointing to ebay.com from mobile

If I pass http://www.ebay.com to this. Somewhere along the way ebay changes my url, perhaps a redirect. What's weird is Android java can't open the page. u = new URL(txturl.getText().toString()); I get the error below as it apparently opening the new mobile site. I'm just wonder at what point my url changes and If I somehow stop this...

Use of eBay API in PHP to retrieve My eBay information

Hi, I am on working on a personal project to write a PHP website which will allow me to easily track all my purchases/bids/watch list on eBay. As you know, purchases which are older than 2 months (I think) can't be seen on eBay; but I would still like to keep track of them. So I would be using the eBay API's to retrieve the information ...

c# ebay api, works on W7 but not on xp

I developed an application that use the "finditemsAdvanced" api call of ebay. It works without problem on windows 7 but when i try it on xp machines the function returns null!!!! I tried to debug it on xp, with vs2010 and vs 2008 but nothing!!!! here the search class: public SearchResult Search(Job searchedjob) { try ...

ebay API : Filter results by location

Hi, We are using the ebay API "findItemsByCategory", and we want to filter the results based upon the location, for example mountainview, phoenix, miami, brooklyn etc. Is there any way to do that? Another thing is, if we get zero results for some location, then we want the results for a location which is nearby to this location. How c...

eBay turbo lister error

I am trying to list multiple items on eBay using Turbo Lister, and I end up getting this error: "Error - The item cannot be listed or modified. The title and/or description may contain improper words, or the listing or seller may be in violation of eBay policy." Also to note, the description is in html ...

.Net samples to receive eBay SOAP notifications

Anybody know of any .Net sample code to receive SOAP notifications from eBay. I can receive the notifications as a POST request and while I could parse out the XML to get what I want I'm hoping there's an easier way to do it by using the classes already defined in the eBay .Net SDK (unfortunately provided without any sample code to recei...

Get WCF to recognise incoming SOAP request

I'm trying to write a C# app to receive eBay notifications which are sent as SOAP over HTTP. I am receiving the notifications ok but I can't get them passed to my WCF service. What do I need to do on the WCF service configuration to allow the incoming SOAP request to be recognised? I'm using a webHttpBinding with the WCF service. The SO...

EBAY: Custom Form Fields

Hi guys, I'm trying to create similar select boxes on my ebay product page. Any ideas would be greatfully apreciated! See caption below; http://markup.io/v/wnmqqc4e4a33 ...

Logging into Ebay with C#

Hi, I am trying to log into my EBay account using C#. I have looked at various posts and found the following 3 options. Unforunately, none of them are working. I am also listing the response header values that I get and that Fiddler shows when doing a login. There is a difference as I only get one "Set-cookie" value and Fiddler shows 10 ...

ebay, how do they end their auctions when time expired?

How does eBay end their auctions and mark the winner? Assume there is an auction end date in the database, once that time has passed the current time, the auction needs to be closed, mark the winner, etc. How is something like this handled in sql 2005? Do they query the db every second to find the expired auctions? Obviously they need to...