Vojtěch Bargl
Vojtěch Bargl
It took me quite some time before I notice that `setAllowedOrigins` sets `areAllOriginsAllowed` back to `false`. Removing that line would make it more intuitive.
Hey Dominik, could you please tell me if there was any progress on this issue? Thanks. I'd like to migrate to age completely but having to type password every time...
Just bump into this repo like half an hour ago and was able to download some books. I used js code below from this fork: https://github.com/mauriciospinelli/safaribooks-oreillybooks ``` console.log(JSON.stringify(document.cookie.split(';').map(c => c.split('=')).map(i...
Just found out that it is required to allow redirect. change line 519 in safarybooks.py: ```python response = self.requests_provider(PROFILE_URL, perform_redirect=False) ``` to ```python response = self.requests_provider(PROFILE_URL, perform_redirect=True) ```