Closed schferbe closed 6 years ago
Cookie auth (_session
) and require_valid_user
isn't a supported combination. Our focus is on building a client for the Cloudant service, where require_valid_user
is off and cannot be turned on.
That said, you are welcome to raise a PR with the above diff and we will be inclined to accept it providing all of our tests pass.
Closing this issue. Please reopen if you raise a PR.
I raised a PR now. Are the tests done automatically?
I want to connect to a CouchDB instance (example code below) with the configuration parameter
this gives a
A hot fix for cookie based authentication would be:
This doesn't work
from cloudant import CouchDB db = CouchDB(*auth, url='http://127.0.0.1:5984') db.connect() print(db.all_dbs())