开发者

pulling webpages from an adult site -- how to get past the site agreement?

开发者 https://www.devze.com 2022-12-13 20:38 出处:网络
I\'m trying to parse a bunch of webpages from an adult website using Ruby: require \'hpricot\' require \'open-uri\'

I'm trying to parse a bunch of webpages from an adult website using Ruby:

require 'hpricot'
require 'open-uri'

doc = Hpricot(open('random page on an adult website'))

However, what I end up getting instead is that initial开发者_StackOverflow社区 'Site Agreement' page making sure that you're 18+, etc.

How do I get past the Site Agreement and pull the webpages I want? (If there's a way to do it, any language is fine.)


You're going to have to figure out how the site detects that a visitor has accepted the agreement.

The most obvious choice would be cookies. Likely when a visitor accepts the agreement, a cookie is sent to their browser, which is then passed back to the site on every subsequent request.

You'll have to get your script to act like a visitor by accepting the cookie, and sending it with every subsequent request. This will require programming on your part to request the "accept agreement" page first, find the cookie, and store it for use. It's likely that they don't use a specific cookie for the agreement, but rather store it in a session, in which case you just need to find the session cookie.


The 'Site Agreement' page probably has a link you have to click or form you have to submit to send back to the server to proceed. Read the source of that page to be sure. You could send that response back from your application. I don't know how to do that in Ruby, but I've seen similar tasks done using cURL and libcurl, which can probably be used from Ruby.


Install LiveHTTPHeaders plugin for Firefox and visit this site. Watch the headers and see what happens when you accept the agreement. You'll probably see that the browser sends some request (possibly a Post) and accepts some cookies. Then you'll have to repeat whatever browser does in your Ruby script.

0

精彩评论

暂无评论...
验证码 换一张
取 消