lwindolf / liferea

Liferea (Linux Feed Reader), a news reader for GTK/GNOME
https://lzone.de/liferea
GNU General Public License v2.0
823 stars 128 forks source link

Difficulty importing Webtoons links #1125

Closed CubeTheThird closed 2 years ago

CubeTheThird commented 2 years ago

I have been having trouble importing feeds from https://www.webtoons.com.

Currently, if I navigate to a comic and press the RSS feed button, it asks to download an .rss file. Opening this file in Liferea works as expected. However, when actually trying to copy the feed URL as a new subscription, it fails at

  1. Feed Discovery

With the message:

The source does not point directly to a feed or a webpage with a link to a feed!

I am unsure if there is a setting I should be enabling, of if there's something else I'm missing. If there is more info needed I am happy to provide.

lwindolf commented 2 years ago

You are doing nothing wrong here. The problem is with webtoons.com treating a non-browser with a GDPR confirmation.

When Liferea tries to auto-discover it gets redirected to https://www.webtoons.com/de/gdpr/ageGate and gives up.

There is no solution for this from the new reader side I fear. We had the issue with several other websites too, which after a while fixed their GDPR consent redirects.

CubeTheThird commented 2 years ago

Makes sense. What I ultimately did as a stop-gap is pipe it through a curl command, which does the trick. Thanks for looking into it.

PetitMote commented 1 year ago

Hi there, Could you please share your curl command @CubeTheThird ?

CubeTheThird commented 1 year ago

Hi there, Could you please share your curl command @CubeTheThird ?

It's literally just curl "https://path/to/feed, nothing special. I have the reader use a command source, which points to a bash script:

#!/bin/bash
curl "$1"

I then call it, passing it in the feed URL

PetitMote commented 1 year ago

Thank you @CubeTheThird, it did the trick!