How to export data to eBay? [PHP / JSON]

1

I downloaded the SDK from eBay: link

I honestly did not find out how to export data there. Both in the Gib and the own ML have tutorials on how to read products, categories and everything, but nothing related to export.

For example, how do I send the name of a category in my bank to see if it exists in ML and get their ID? Anyone have an idea where to start?

ML Tutorial:

API Car Category Archive: link

    
asked by anonymous 12.03.2015 / 21:00

1 answer

1

Once the authentication is done, you need to know what the endpoint of the API you will need to use.

In your case it is the endpoint of search ( https://api.mercadolibre.com/sites/MLA/search )

So if you want to do a product search by category just do it:

https://api.mercadolibre.com/sites/MLA/search?category=MLB1744

(Source: link )

And check the API response, which will be a listing with 0 or more items, or an error.

Anything is just check documentation .

    
13.03.2015 / 20:25