-
Notifications
You must be signed in to change notification settings - Fork 760
Credential Store
hannakoppelaar edited this page May 19, 2020
·
1 revision
The Credential Store contains the http or form login information. It
must be configured in the crawler-beans.cxml
file.
This is an example of an empty CredentialStore:
<bean id="credentialStore"
class="org.archive.modules.credential.CredentialStore">
</bean>
However, for it to work, its 'credentials' map property must be filled with suitable Credential instances. For example, if you have an HtmlFormCredential bean defined elsewhere with id 'formCredential', then the following will result in a CredentialStore including that Credential:
<bean id="credentialStore"
class="org.archive.modules.credential.CredentialStore">
<property name="credentials">
<map>
<entry key="formCredential" value-ref="formCredential" />
</map>
</property>
</bean>
Structured Guides:
User Guide
- Introduction
- New Features in 3.0 and 3.1
- Your First Crawl
- Checkpointing
- Main Console Page
- Profiles
- Heritrix Output
- Common Heritrix Use Cases
- Jobs
- Configuring Jobs and Profiles
- Processing Chains
- Credentials
- Creating Jobs and Profiles
- Outside the User Interface
- A Quick Guide to Creating a Profile
- Job Page
- Frontier
- Spring Framework
- Multiple Machine Crawling
- Heritrix3 on Mac OS X
- Heritrix3 on Windows
- Responsible Crawling
- Politeness parameters
- BeanShell Script For Downloading Video
- crawl manifest
- JVM Options
- Frontier queue budgets
- BeanShell User Notes
- Facebook and Twitter Scroll-down
- Deduping (Duplication Reduction)
- Force speculative embed URIs into single queue.
- Heritrix3 Useful Scripts
- How-To Feed URLs in bulk to a crawler
- MatchesListRegexDecideRule vs NotMatchesListRegexDecideRule
- WARC (Web ARChive)
- When taking a snapshot Heritrix renames crawl.log
- YouTube
- H3 Dev Notes for Crawl Operators
- Development Notes
- Spring Crawl Configuration
- Potential Cleanup-Refactorings
- Future Directions Brainstorming
- Documentation Wishlist
- Web Spam Detection for Heritrix
- Style Guide
- HOWTO Ship a Heritrix Release
- Heritrix in Eclipse