Skip to content

tmatei/api-ebay-shopping-java

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 

Repository files navigation

api-ebay-shopping-java

A Java client library for Ebay Shopping's API.

Usage

Maven dependency

<dependency>
    <groupId>com.tudormatei.ebay</groupId>
    <artifactId>shopping-api</artifactId>
    <version>1.0.1</version>
</dependency>

Making API Calls

Initialize the client object

EbayShoppingClient esc = new EbayShoppingClient("your-api-key")

Find Products call

// 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());

About

Ebay Shopping API implementation in Java

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages