Alex Osborne

Results 135 comments of Alex Osborne

Thanks for sharing. I've added your updated version to the wiki page. As for the original question, I don't see an obvious way to add cookies inline in the XML...

Assuming your content is supplied by a InputStream called `stream` then something like this will probably work: ```java Recorder recorder = curi.getRecorder(); recorder.markContentBegin(); recoredr.inputWrap(stream); recorder.getRecordedInput().readFully(); recorder.closeRecorders(); ``` handleCapturedRequest() in [ExtractorChrome](https://github.com/internetarchive/heritrix3/blob/c1b1b111635762e7c00b233baa09ec5be0f091c0/contrib/src/main/java/org/archive/modules/extractor/ExtractorChrome.java#L238-L280)...

Heritrix doesn't have any special support for OAuth2 client authentication. You are correct that Restlet is not used in the crawling process and it's only used for Heritrix's user interface....

@TheTechRobo ah, my mistake. It apparently needs to be wrapped in an instance of ConfigFile: ```xml ``` > Our Oauth 2 is not using Cookies storage, but Local Storage. @AndreSchmutz...

I can't imagine many scenarios where running Heritrix without HTTPS or authentication *on a network* would not be irresponsible as it enables trivial remote code execution. It would also very...

I assume that's a screenshot from some IDE but some more context would be helpful. :-) What are you trying to do? What software are you using? That looks as...

If you're including it as a dependency in a Maven project maybe try adding these repositories to your pom.xml file, although I would normally expect them to be included automatically....

Openwayback has been largely in maintenance mode for the last few years and hasn't gained significant features. For better JavaScript support it may be worth trying Pywb which is currently...

One possible reason is multiple URLs with slight variants (e.g www vs no-www or http vs https or uppercase vs lowecase) are grouped due to [URL canonicalization](https://github.com/iipc/openwayback/wiki/Technical-overview#canonicalization-scheme). Also not impossible...

It looks like the code [was changed](https://github.com/yuanfayang/heritrix/commit/4817d5d939aa906a9a6e9b9408b135df9aa259bc?diff=split#diff-af192cc20591eb45eb1ea1056556ba6d3c77b2c8a2b4f50e7042a9cf6f881da4R434-R436) (in early history that's not in the heritrix3 repo) from: ```java ordinalPlus = ((((long)curi.getHolderCost()) & 0xFFL) I think there should be a warning...