@@ -77,13 +77,13 @@ The SDK abstracts the complexity involved in calculating the request header '__r
7777To download a feed file which is -
7878* __ bootstrap__ : (feed_scope = ALL_ACTIVE)
7979* __ L1 category 1__ : (category_id = 1)
80- * __ marketplace US__ : (X-EBAY-C-MARKETPLACE-ID: EBAY-US )
80+ * __ marketplace US__ : (X-EBAY-C-MARKETPLACE-ID: EBAY_US )
8181
8282```
8383FeedRequest.FeedRequestBuilder builder = new FeedRequestBuilder();
8484builder.feedScope("ALL_ACTIVE")
8585 .categoryId("1")
86- .siteId("EBAY-US ")
86+ .siteId("EBAY_US ")
8787 .token(<TOKEN>)
8888 .type(FeedTypeEnum.ITEM);
8989
@@ -248,7 +248,7 @@ usage: Feed SDK CLI
248248 -scope <arg> the feed scope. Available scopes are
249249 ALL_ACTIVE or NEWLY_LISTED
250250 -mkt <arg> the marketplace id for which feed is
251- being request. For example - EBAY-US
251+ being request. For example - EBAY_US
252252 -token <arg> the oauth token for the consumer. Omit
253253 the word 'Bearer'
254254 -c2f <arg> list of l2 categories which are used to
@@ -286,12 +286,12 @@ For example, to use the command line options to download, unzip and filter feed
286286
287287Using token
288288```
289- java -jar feed-sdk-1.0.0.beta-RELEASE-uber.jar -dt 20180701 -c1 1281 -scope ALL_ACTIVE -lf 46310 177789 -mkt EBAY-US -c3f 177792 116381 -pricelf 2 -priceuf 100 -locf US CN -token xxx
289+ java -jar feed-sdk-1.0.0.beta-RELEASE-uber.jar -dt 20180701 -c1 1281 -scope ALL_ACTIVE -lf 46310 177789 -mkt EBAY_US -c3f 177792 116381 -pricelf 2 -priceuf 100 -locf US CN -token xxx
290290```
291291
292292Using credentials file
293293```
294- java -jar feed-sdk-1.0.0.beta-RELEASE-uber.jar -dt 20180801 -c1 11700 -scope ALL_ACTIVE -mkt EBAY-US -pricelf 2 -priceuf 100 -locf US CN -cl <absolute path of credentials file>
294+ java -jar feed-sdk-1.0.0.beta-RELEASE-uber.jar -dt 20180801 -c1 11700 -scope ALL_ACTIVE -mkt EBAY_US -pricelf 2 -priceuf 100 -locf US CN -cl <absolute path of credentials file>
295295```
296296
297297### Using config file driven approach
@@ -306,7 +306,7 @@ The structure of the config file
306306 "requests": [{
307307 "feedRequest": {
308308 "categoryId": "1",
309- "marketplaceId": "EBAY-US ",
309+ "marketplaceId": "EBAY_US ",
310310 "date": "20180708",
311311 "feedScope": "ALL_ACTIVE",
312312 "type": "ITEM"
0 commit comments