Code Monkey home page Code Monkey logo

Comments (6)

cuecusp avatar cuecusp commented on June 8, 2024 1

When I use this code, I don't get absolute image url. I think when response.body is passed to readability it doesn't understand the main url. How to solve it?

from readability.

OKNoah avatar OKNoah commented on June 8, 2024

I think this is caused by JSDOM not decrypting a compressed page.

Related to this: jsdom/jsdom#648

from readability.

luin avatar luin commented on June 8, 2024

The result seems correct for me. The code:

read('http://www.inc.com/gene-marks/the-one-way-to-tell-if-you-re-a-successful-entrepreneur.html?cid=sf01001',
function(err, article, meta) {
  console.log(article.content);
});

And output:

<div class="article-body inc_editable" data-editable="true" data-editor-class="InlineTextEditor" data-label="Body" data-content-type="article" data-content-id="59175" data-fieldname="inc_clean_text"><p>I'm not a very successful entrepreneur.&nbsp; Are you?</p><span>...

from readability.

OKNoah avatar OKNoah commented on June 8, 2024

Ah, OK I think the problem was I scraped the data with JSDOM then used readability on the HTML.

from readability.

OKNoah avatar OKNoah commented on June 8, 2024

Nope, I still see the results above.

I now use Needle to decompress the page first, and that works.

from readability.

chrisribe avatar chrisribe commented on June 8, 2024

Yep using Needle to get the content works better.
Here is the link:
https://github.com/tomas/needle

And a code example:

var needle = require('needle');
var read = require('node-readability');

var url = "http://www.inc.com/gene-marks/the-one-way-to-tell-if-you-re-a-successful-entrepreneur.html?cid=sf01001";
needle.get(url, function(error, response) {
  if (!error && response.statusCode == 200){

        read(response.body,
        function(err, article, meta) {
          var dom = article.document;
          var html = '<html><head><meta charset="utf-8"><title>'+dom.title+'</title></head><body><h1>'+article.title+'</h1>'+article.content+'</body></html>';
          console.log(html);
        });
  }
});

from readability.

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.