Rails 什么是抓取网站的最佳宝石?
(屏幕)抓取受密码保护的网站的最佳宝石是什么?
What is the best gem to (screen) scrape websites that is password protected?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
(屏幕)抓取受密码保护的网站的最佳宝石是什么?
What is the best gem to (screen) scrape websites that is password protected?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
我会在这里看一下:http://ruby-toolbox.com/categories/html_parsing。 html 和 http://ruby-toolbox.com/categories/http_clients.html< /a>.
我认为对于密码你可以使用 mechanize
你有很多选择。
看一下这个问题的例子:Ruby Mechanize 登录不工作
I'd take a look here: http://ruby-toolbox.com/categories/html_parsing.html and http://ruby-toolbox.com/categories/http_clients.html.
I think that for password you can use mechanize
You have a lot of options there.
Look at this question for an example: Ruby Mechanize login not working
使用 Mechanize gem。它允许您填写表单、存储 cookie 以及使用 CSS 选择器选择内容。
(Railscast 教程)
Use the Mechanize gem. It allows you to fill forms, store cookies, and select content using css selectors.
(Railscast tutorial)