2018-08-25 07:23:03 +02:00
|
|
|
Miniflux API Client
|
|
|
|
===================
|
|
|
|
|
2020-10-19 06:53:07 +02:00
|
|
|
[![PkgGoDev](https://pkg.go.dev/badge/miniflux.app/client)](https://pkg.go.dev/miniflux.app/client)
|
|
|
|
|
2018-08-25 07:23:03 +02:00
|
|
|
Client library for Miniflux REST API.
|
|
|
|
|
|
|
|
Installation
|
|
|
|
------------
|
|
|
|
|
|
|
|
```bash
|
|
|
|
go get -u miniflux.app/client
|
|
|
|
```
|
|
|
|
|
|
|
|
Example
|
|
|
|
-------
|
|
|
|
|
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2021-02-17 06:19:03 +01:00
|
|
|
"os"
|
2018-08-25 07:23:03 +02:00
|
|
|
|
2023-08-10 06:15:55 +02:00
|
|
|
miniflux "miniflux.app/v2/client"
|
2018-08-25 07:23:03 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2020-03-02 02:38:29 +01:00
|
|
|
// Authentication with username/password:
|
2018-08-25 07:23:03 +02:00
|
|
|
client := miniflux.New("https://api.example.org", "admin", "secret")
|
|
|
|
|
2020-03-02 02:38:29 +01:00
|
|
|
// Authentication with an API Key:
|
|
|
|
client := miniflux.New("https://api.example.org", "my-secret-token")
|
|
|
|
|
2018-08-25 07:23:03 +02:00
|
|
|
// 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
|
|
|
|
}
|
|
|
|
|
2021-02-17 06:19:03 +01:00
|
|
|
err = os.WriteFile("opml.xml", opml, 0644)
|
2018-08-25 07:23:03 +02:00
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|