https://github.com/hossain-khan/feedly-cloud-api-specification
API spec for the feedly Cloud API using OpenAPI Specification (aka Swagger 2.0). Generates PHP, Java, Python, Go, Android, Objective-C and many more client SDK.
https://github.com/hossain-khan/feedly-cloud-api-specification
feedly openapi-specification swagger swagger-specification
Last synced: 5 months ago
JSON representation
API spec for the feedly Cloud API using OpenAPI Specification (aka Swagger 2.0). Generates PHP, Java, Python, Go, Android, Objective-C and many more client SDK.
- Host: GitHub
- URL: https://github.com/hossain-khan/feedly-cloud-api-specification
- Owner: hossain-khan
- License: apache-2.0
- Created: 2016-11-17T22:55:05.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-11-22T20:11:50.000Z (over 9 years ago)
- Last Synced: 2025-01-27T10:29:41.208Z (over 1 year ago)
- Topics: feedly, openapi-specification, swagger, swagger-specification
- Language: Shell
- Size: 22.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/amardeshbd/feedly-cloud-api-specification) [](http://online.swagger.io/validator?url=https://raw.githubusercontent.com/amardeshbd/feedly-cloud-api-specification/master/feedly-api-specification.yaml)
# Unofficial Feedly Cloud API Specification
API spec for the feedly Cloud API using OpenAPI Specification (fka Swagger 2.0). Generates PHP, Java, Python, Go, Android, Objective-C and many more client SDK.
> **DISCLAIMER:** The API specification only includes **search** API to serve my need to searching RSS/Atom feeds. See official website for list of APIs supported.
* **Official API Spec** can be found at [developer.feedly.com](http://developer.feedly.com/).
## Preview API Spec
You can preview the [spec](https://raw.githubusercontent.com/amardeshbd/feedly-cloud-api-specification/master/feedly-api-specification.yaml) file in **[ReDoc browser](http://rebilly.github.io/ReDoc/?url=https://raw.githubusercontent.com/amardeshbd/feedly-cloud-api-specification/master/feedly-api-specification.yaml)**
## Generating Client Library
Here is an example of generating `java` library using _Retrofit_ and _RxJava_
```
java -jar swagger-codegen-cli-2.2.1.jar generate \
--input-spec feedly-api-specification.yaml \
--lang java \
--library retrofit2 \
-DuseRxJava=true \
--model-package com.feedly.cloud.model \
--api-package com.feedly.cloud.endpoint \
--output feedly-api-client
```
> NOTE: Download the CLI binary jar file from [swagger-codegen](https://github.com/swagger-api/swagger-codegen).