Ebay query in mysql?

I would like to know if this is possible,

To extract user id from ebay page and insert it into mysql as part of insert statement? Otherwise, what would be the best way to do it?

I have import files containing hundreds of ebay auction urls and I have to get the seller ID from each. Is there an easier way to do this than what I am suggesting?

+1


source to share


1 answer


You can use the eBay API for this . Each page URL contains an item number and can be used to query eBay for a seller ID.



eBay Hacks Item 109 gives some PHP example code to do what you need (and more).

+2


source







All Articles