机器人不允许使用变通方法

时间:2015-07-22 19:38:34

标签: robots.txt scraper

我试图创建一个剪贴板,但是当我运行以下代码时,它说机器人不允许。这是出于我的内部目的,但是机器人不允许有解决方法吗?

我在这个网站上测试它:http://80apptester.80legs.com/并且它没有通过。

// This is sample code for building a web scraper.
//
// For this sample, we use
// http://www.houzz.com/pro/jeff-halper/exterior-worlds-landscaping-and-design
// as a sample listing we want to scrape.
// 
// For the full crawler, we will assume the crawl
// starts from http://www.houzz.com/professionals/

var EightyApp = function() {
  this.processDocument = function(html, url, headers, status, jQuery) {

    // We only want to collect data from listing pages
    if (url.match("/pro/") {

      // First we construct an HTML object so we can use Jquery
      var app = this;
      $ = jQuery;
      var $html = app.parseHtml(html, $);
      var object = {};

      // Then we use JQuery to find all the attributes we want
      object.name = $html.find('h1').text();
      object.address = $html.find('span[itemprop="streetAddress"]').text();
      object.city = $html.find('span[itemprop="addressLocality"]').text();
      object.state = $html.find('span[itemprop="addressRegion"]').text();
      object.postalcode = $html.find('span[itemprop="postalCode"]').text();
      object.contact = $html.find('dt:contains("Contact:")').next().text();

      // Finally, we return the object as a string
      return JSON.stringify(object);
    }
  }

  this.parseLinks = function(html, url, headers, status, jQuery) {

    // We construct the HTML object for Jquery again
    var app = this;
    var $ = jQuery;
    var $html = app.parseHtml(html, $);
    var links = [];

    // We add all the pages in the directory
    $html.find('a.pageNumber').each(function(i, obj) {
      var link = app.makeLink(url, $(this).attr('href'));
      if (link != null) {
        links.push(link);
      }
    });

    // We add all the listings in the directory
    $html.find('a.pro-title').each(function(i, obj) {
      var link = app.makeLink(url, $(this).attr('href'));
      if (link != null) {
        links.push(link);
      }
    });

    return links;
  }
}

try {
  module.exports = function(EightyAppBase) {
    EightyApp.prototype = new EightyAppBase();
    return new EightyApp();
  }
} catch(e) {
  console.log("Eighty app exists.");
  EightyApp.prototype = new EightyAppBase();
}

1 个答案:

答案 0 :(得分:0)

可能不是。即使您更改了代理名称,也可以使用其他技术(如IP过滤)来检测不需要的处理程序。

相关问题