Git Product home page Git Product logo

Comments (2)

Necoro avatar Necoro commented on June 15, 2024

That one was tricky:
wget -O - https://www.dailytelegraph.com.au/feed outputs the expected feed.
But when looking at all the redirects:

--2021-06-15 00:12:20--  https://www.dailytelegraph.com.au/feed/
Loaded CA certificate '/etc/ssl/certs/ca-certificates.crt'
Resolving www.dailytelegraph.com.au (www.dailytelegraph.com.au)... 23.3.64.134
Connecting to www.dailytelegraph.com.au (www.dailytelegraph.com.au)|23.3.64.134|:443... connected.
HTTP request sent, awaiting response... 302 Moved Temporarily
Location: https://www.dailytelegraph.com.au/remote/check_cookie.html?url=https%3a%2f%2fwww.dailytelegraph.com.au%2ffeed%2f [following]
--2021-06-15 00:12:20--  https://www.dailytelegraph.com.au/remote/check_cookie.html?url=https%3a%2f%2fwww.dailytelegraph.com.au%2ffeed%2f
Reusing existing connection to www.dailytelegraph.com.au:443.
HTTP request sent, awaiting response... 302 Moved Temporarily
Location: https://www.dailytelegraph.com.au/feed/ [following]

one gets the idea: Cookies.

And thus:
wget --no-cookies -O - https://www.dailytelegraph.com.au/feed/ returns an HTML site that states that cookies need to be enabled.

Alternatives:

  1. As cookies and RSS in combination make no sense, one should contact the Daily Telegraph and make them correct their broken implementation
  2. Make gofeed support cookies: In parser.go#ParseURLWithContext:
if client.Jar, err = cookiejar.New(nil); err != nil {
	return
}
  1. Use your own http.Client and call parse.Parse with the result.

@mmcdole: How do you feel about this?

from gofeed.

mmcdole avatar mmcdole commented on June 15, 2024

I agree @Necoro -- this is probably outside of what I'd consider normal. For this, I'd do as you suggested and have them create their own http.Client with this behavior.

from gofeed.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.