miniflux-v2/client
Shizun Ge 4ff52bd730
Add API endpoints to get feeds and entries of a category
2021-01-18 19:44:02 -08:00
..
README.md Update contributor link and Godoc badge for client 2020-10-18 21:53:07 -07:00
client.go Add API endpoints to get feeds and entries of a category 2021-01-18 19:44:02 -08:00
core.go Refactor feed creation to allow setting most fields via API 2021-01-02 16:48:22 -08:00
doc.go Fix typo in license header 2018-10-08 15:50:15 -07:00
request.go API client: Do not return body for response with no content 2020-07-27 18:54:21 -07:00

README.md

Miniflux API Client

PkgGoDev

Client library for Miniflux REST API.

Installation

go get -u miniflux.app/client

Example

package main

import (
	"fmt"
    "io/ioutil"

	miniflux "miniflux.app/client"
)

func main() {
    // Authentication with username/password:
    client := miniflux.New("https://api.example.org", "admin", "secret")

    // Authentication with an API Key:
    client := miniflux.New("https://api.example.org", "my-secret-token")

    // Fetch all feeds.
    feeds, err := client.Feeds()
    if err != nil {
        fmt.Println(err)
        return
    }
    fmt.Println(feeds)

    // Backup your feeds to an OPML file.
    opml, err := client.Export()
    if err != nil {
        fmt.Println(err)
        return
    }

    err = ioutil.WriteFile("opml.xml", opml, 0644)
    if err != nil {
        fmt.Println(err)
        return
    }
}