miniflux-v2/client
Frédéric Guillot 086b985383 Add API Client function to refresh all feeds 2020-03-01 19:45:10 -08:00
..
README.md Add per-application API Keys 2020-03-01 18:22:45 -08:00
client.go Add API Client function to refresh all feeds 2020-03-01 19:45:10 -08:00
core.go Remove unused Feed.Entries from API client 2020-01-07 21:39:50 -08:00
doc.go Fix typo in license header 2018-10-08 15:50:15 -07:00
request.go Add per-application API Keys 2020-03-01 18:22:45 -08:00

README.md

Miniflux API Client

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
    }
}