v2 icon indicating copy to clipboard operation
v2 copied to clipboard

Suggestion: Option to get original content by default/for all feeds

Open a3rosol opened this issue 6 years ago • 7 comments

Is it possible to get the original content of all feeds and have the possibility of an opt-out instead? Just switched from coldsweat and changing each of my 300 feeds manually is going to be a pain

a3rosol avatar Jul 03 '18 23:07 a3rosol

Since this is only a one-time thing, I'm guessing you could just run a database query directly:

UPDATE feeds SET crawler = t WHERE user_id = ?;

Where ? is your user ID (1 if you're the first and only user).

dzaikos avatar Jul 05 '18 06:07 dzaikos

Having just migrated several hundred feeds from Feedbin to Miniflux, I was wishing for this exact feature just this past weekend. Maybe you hide it in the settings. +1

scroggi avatar Jul 24 '18 03:07 scroggi

Another vote for an option where you can fetch original content for all feeds. If not in the settings page, then perhaps in the configuration file.

yabood avatar Oct 04 '19 02:10 yabood

+1 for this feature

dmitryzykov avatar Feb 14 '20 14:02 dmitryzykov

+1 any news ?

Baregamyan avatar May 11 '24 11:05 Baregamyan

It seems I have found a temporary solution:

Create bash sciprt (script.sh for example): ❗️IMPORTANT: Don't forget to change your-miniflux-domain (or just an ip address), user and password by your Miniflux credentials

# Get all feed IDs
FEED_IDS=$(curl -u user:password -X GET http://your-miniflux-domain.com/v1/feeds | jq -r '.[].id')

# Update each feed with "fetch original content" option
for feed_id in $FEED_IDS; do
  curl -X PUT -u "user:password" -H "Content-Type: application/json" -d '{"crawler":true}' "http://your-miniflux-domain.com/v1/feeds/${feed_id}"
done

Then just run the script in terminal: ./script.sh

Baregamyan avatar Jun 17 '24 14:06 Baregamyan

+1 for this feature

dosch avatar Sep 17 '24 10:09 dosch