{
    "name": "Feedly",
    "desc": "Millions of users depend on their feedly for inspiration, information, and to feed their passions. But one size does not fit all. Individuals have different workflows, different habits, and different devices. In our efforts to evolve feedly from a product to a platform, we have therefore decided to open up the feedly API. Developers are welcome to deliver new applications, experiences, and innovations via the feedly cloud. We feel strongly that this will help to accelerate innovation and better serve our users.",
    "url": "https://cloud.feedly.com/",
    "oauth2": {
        "authorize": {
            "url": "https://cloud.feedly.com/v3/auth/auth",
            "query": {
                "client_id": "{client_id}",
                "response_type": "code",
                "redirect_uri": "{{callback}}",
                "state": "{{state}}",
                "scope": "https://cloud.feedly.com/subscriptions"
            }
        },
        "access_token": {
            "url": "https://cloud.feedly.com/v3/auth/token",
            "query": {
                "code": "{{code}}",
                "client_id": "{client_id}",
                "client_secret": "{client_secret}",
                "redirect_uri": "{{callback}}",
                "state": "{{state}}",
                "grant_type": "authorization_code"
            }
        },
        "refresh": {
            "url": "https://cloud.feedly.com/v3/auth/token",
            "query": {
                "refresh_token": "{{refresh_token}}",
                "client_id": "{client_id}",
                "client_secret": "{client_secret}",
                "grant_type": "refresh_token"
            }
        },
        "request": {
            "headers": {
                "Authorization": "OAuth {{token}}"
            }
        }
    },
    "href": {
        "keys": "https://developer.feedly.com/",
        "docs": "https://developer.feedly.com/",
        "apps": "https://www.feedly.com/apps.html",
        "provider": "https://www.feedly.com/"
    }
}
