From f4b881563b5e5325b7f792d51c1cb512683c576f Mon Sep 17 00:00:00 2001 From: evdeg Date: Tue, 11 Aug 2020 18:56:58 -0700 Subject: [PATCH] Updated links and descriptions in main README.md and clients/sellingpartner-api-frp-helper-java/README.md --- README.md | 8 +++++++- clients/sellingpartner-api-frp-helper-java/README.md | 10 +++++----- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 0c20700..e29e34a 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,11 @@ ## Selling Partner API Models -This repository contains Swagger/OpenAPI version 2 models for developers to use to create software to call Selling Partner APIs. Developers can use [swagger-codegen](https://github.com/swagger-api/swagger-codegen) to generate client libraries from these models. Please refer to [selling-partner-api-docs](https://github.com/amzn/selling-partner-api-docs) for additional documentation and read the [Selling Partner Api Developer Guide](https://github.com/amzn/selling-partner-api-docs/blob/main/guides/developer-guide/SellingPartnerApiDeveloperGuide.pdf) for instructions to get started. +This repository contains Swagger models for developers to use to create software to call Selling Partner APIs. Developers can use [swagger codegen](https://github.com/swagger-api/swagger-codegen) to generate client libraries from these models. Please refer to [selling-partner-api-docs](https://github.com/amzn/selling-partner-api-docs) for additional documentation and read the [Selling Partner Api Developer Guide](https://github.com/amzn/selling-partner-api-docs/blob/main/guides/developer-guide/SellingPartnerApiDeveloperGuide.pdf) for instructions to get started. + +The [models directory](https://github.com/amzn/selling-partner-api-models/tree/main/models) contains all of the currently available Selling Partner API models. + +The [clients directory](https://github.com/amzn/selling-partner-api-models/tree/main/clients) contains a [Java library](https://github.com/amzn/selling-partner-api-models/tree/main/clients/sellingpartner-api-aa-java) and a [C# library](https://github.com/amzn/selling-partner-api-models/tree/main/clients/sellingpartner-api-aa-csharp) with mustache templates for use with [swagger-codegen](https://swagger.io/tools/swagger-codegen/) to generate client libraries with authentication and authorization functionality included. The templates are located in *resources/swagger-codegen*. + +You can also find Java helper code for using the Feeds API and the Reports API in the [sellingpartner-api-frp-helper-java](https://github.com/amzn/selling-partner-api-models/tree/main/clients/sellingpartner-api-frp-helper-java) directory. ## Security diff --git a/clients/sellingpartner-api-frp-helper-java/README.md b/clients/sellingpartner-api-frp-helper-java/README.md index 0a1e9fe..9f98100 100644 --- a/clients/sellingpartner-api-frp-helper-java/README.md +++ b/clients/sellingpartner-api-frp-helper-java/README.md @@ -1,4 +1,4 @@ -#Selling Partner API for Feeds, Uploads and Reports Java Helper +## Selling Partner API for Feeds, Uploads and Reports Java Helper This library provides helper classes for use with the Selling Partner APIs for Feeds, Uploads and Reports. It is intended for use with the Selling Partner API Client Libraries generated by [Swagger Codegen](https://swagger.io/tools/swagger-codegen/) using the OkHttp library. @@ -10,19 +10,19 @@ To use this library you will need to integrate it with one or more of the follow ##### Selling Partner API Authentication/Authorization Library -This package is required because it handles the Selling Partner API credentials required by the APIs. You can find it on our GitHub Repository [here](https://github.com/amzn/amazon-marketplace-api-sdk/tree/master/clients/sellingpartner-api-aa-java). +This package is required because it handles the Selling Partner API credentials required by the APIs. You can find it on our GitHub Repository [here](https://github.com/amzn/selling-partner-api-models/tree/main/clients/sellingpartner-api-aa-java). ##### Selling Partner API for Feeds -The JSON file can be obtained [here](https://github.com/amzn/amazon-marketplace-api-sdk/tree/master/Feeds%20API). +The JSON file can be obtained [here](https://github.com/amzn/selling-partner-api-models/blob/main/models/feeds-api-model/feedsV0.json). ##### Selling Partner API for Uploads -The JSON file can be obtained [here](https://github.com/amzn/amazon-marketplace-api-sdk/tree/master/Uploads%20API). +The JSON file can be obtained [here](https://github.com/amzn/selling-partner-api-models/blob/main/models/uploads-api-model/uploads.json). ##### Selling Partner API for Reports -The JSON file can be obtained [here](https://github.com/amzn/amazon-marketplace-api-sdk/tree/master/Reports%20API). +The JSON file can be obtained [here](https://github.com/amzn/selling-partner-api-models/blob/main/models/reports-api-model/reportsV0.json). ## Building