fasheng / elfeed-protocol

Provide extra protocols to make like Fever, NewsBlur, Nextcloud/ownCloud News and Tiny Tiny RSS work with elfeed
GNU General Public License v3.0
100 stars 18 forks source link

NewsBlur elfeed-curl--call-callback error. #16

Closed peng051410 closed 5 years ago

peng051410 commented 5 years ago

I use newsblur as my protocol. got errors: Error running timer ‘elfeed-curl--call-callback’: (wrong-type-argument stringp ((("http://kailing.pub") ("http://www.ruanyifeng.com/blog/atom.xml") ; What should i do ?

fasheng commented 5 years ago

Works fine here with Emacs 26.1, elfeed 3.1.0, elfeed-protocol 0.5.8 on linux with the following config:

(setq elfeed-db-directory "/tmp/elfeed")
(setq elfeed-protocol-newsblur-maxpages 5)
;; setup cookie file for newsblur
(setq elfeed-curl-extra-arguments '("-c" "/tmp/newsblur-cookie"
                                    "-b" "/tmp/newsblur-cookie"))
(setq elfeed-feeds '(("newsblur+https://user@newsblur.com"
                      :password "password")))
(setq elfeed-log-level 'debug)
(elfeed-set-timeout 36000)
(elfeed-protocol-enable)

You could toggle-debug-on-error before update operation and post message in *elfeed-log* with debug level to find more information.

peng051410 commented 5 years ago

Works for me! Thanks.