Subject: | Feature request: add header to req() |
We are working in a Kerberized environment, meaning all POST operations
against a CouchDB instance have to have a Kerberos ticket to succeed.
We would like to use CouchDB::Client to connect, but current
implementation does not handle any optional headers added to requests.
I searched your code, is it possible to pass 'KRB5' header line somehow
into req() function here?
sub req {
my $self = shift;
my $meth = shift;
my $path = shift;
my $content = shift;
my $headers = undef;