diff options
author | Frédéric Guillot <fred@miniflux.net> | 2018-06-19 22:58:29 -0700 |
---|---|---|
committer | Frédéric Guillot <fred@miniflux.net> | 2018-06-19 22:58:29 -0700 |
commit | bddca15b69692bd055c507f2469e68dca1e56098 (patch) | |
tree | 913989e170cc3ac46558c682f8ec10813a0ae3c5 /reader/subscription | |
parent | 261695c14c2d768f392cfb774e7940660edaa3d9 (diff) |
Add new fields for feed username/password
Diffstat (limited to 'reader/subscription')
-rw-r--r-- | reader/subscription/finder.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/reader/subscription/finder.go b/reader/subscription/finder.go index e5a27f5..6b45cfb 100644 --- a/reader/subscription/finder.go +++ b/reader/subscription/finder.go @@ -27,10 +27,11 @@ var ( ) // FindSubscriptions downloads and try to find one or more subscriptions from an URL. -func FindSubscriptions(websiteURL string) (Subscriptions, error) { +func FindSubscriptions(websiteURL, username, password string) (Subscriptions, error) { defer timer.ExecutionTime(time.Now(), fmt.Sprintf("[FindSubscriptions] url=%s", websiteURL)) clt := client.New(websiteURL) + clt.WithCredentials(username, password) response, err := clt.Get() if err != nil { if _, ok := err.(errors.LocalizedError); ok { |