A Java client library for Ebay Shopping's API.
<dependency>
<groupId>com.tudormatei.ebay</groupId>
<artifactId>shopping-api</artifactId>
<version>1.0.1</version>
</dependency>
EbayShoppingClient esc = new EbayShoppingClient("your-api-key")
// set up the request
FindProductsRequest request = new FindProductsRequest();
request.setQueryKeywords("watch");
request.setMaxEntries(10);
// get the response
ShoppingApi shopping = esc.getShoppingApi();
FindProductsResponse response = shopping.findProducts(request.toMap());