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
97 stars 18 forks source link

Newsblur only syncing recent posts #8

Closed emacsomancer closed 6 years ago

emacsomancer commented 6 years ago

I'm not sure if there's a way of controlling this, but I only seem to be able to see relatively recent blog posts from newsblur in elfeed. So in elfeed I only see 11 entries, but in the newsblur web interface there are 191 entries (and they're not more than 6 months old, so it doesn't seem to be the local elfeed filter).

fasheng commented 6 years ago

Well, the newsblur api is a little different, it split stories in pages and we could only fetch one page per time, and there is even not a clear method to get the total page number, so you have to set the max page and reinit manually:

(setq elfeed-protocol-newsblur-maxpages 100)
M-x elfeed-protocol-newsblur-reinit

Besides, newsblur have two type of stories: feed stories and social stories. social stories is not very compatible with elfeed, so elfeed-protocol only support feed stories now. Hope this helps.

emacsomancer commented 6 years ago

Thanks! That does indeed seem to work.