You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use Mechanize instead of Nokogiri to login and retain session info before crawling content that requires authentication
Example:
class Project
html "http://jira.myproject.com"
login "http://jira.myproject.com/login" do
username {css: "form#login #username"}, value: "foo"
password {css: "form#login #password"}, value: "bar"
submit {css: "form#login #submit"}
end
end
The text was updated successfully, but these errors were encountered:
Support for crawling authenticated content.
Use Mechanize instead of Nokogiri to login and retain session info before crawling content that requires authentication
Example:
The text was updated successfully, but these errors were encountered: