Quote:
Originally Posted by Selcal
-- the login part doesn't seem to work.
|
Replicate what's happening in Calibre in a browser (FireFox), or what's happening in the browser in Calibre. To do the former - use the Live HTTP Headers add-on. To do the latter, use this in the recipe :
Code:
# Log information about HTTP redirects and Refreshes.
br.set_debug_redirects(True)
# Log HTTP response bodies (ie. the HTML, most of the time).
br.set_debug_responses(True)
# Print HTTP headers.
br.set_debug_http(True)
It could be a problem with the referer. Try turning referer off in FireFox and see if that replicates what happens in Calibre. Compare the http headers in the two cases.