miniflux-v2/client
Frédéric Guillot 2002d60fbe Add new API endpoint /icons/{iconID} 2023-10-06 13:52:33 -07:00
..
README.md Move internal packages to an internal folder 2023-08-10 20:29:34 -07:00
client.go Add new API endpoint /icons/{iconID} 2023-10-06 13:52:33 -07:00
doc.go Rename Miniflux package name to follow Go module naming convention 2023-08-09 22:10:44 -07:00
model.go Add changed_after and changed_before options to /v1/entries endpoint 2023-10-05 21:28:25 -07:00
request.go Rename Miniflux package name to follow Go module naming convention 2023-08-09 22:10:44 -07:00

README.md

Miniflux API Client

PkgGoDev

Client library for Miniflux REST API.

Installation

go get -u miniflux.app/v2/client

Example

package main

import (
	"fmt"
	"os"

	miniflux "miniflux.app/v2/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 = os.WriteFile("opml.xml", opml, 0644)
    if err != nil {
        fmt.Println(err)
        return
    }
}